News:

Dear forum visitors, if the support forum is not available, please try again a few minutes later. Thanks!

Main Menu
Support-Forum

Problem number display

Started by ciroslitz, 06.10.2016 22:39:54

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

ciroslitz


Appear strange numbers. view photos

[gelöscht durch Administrator]
  •  

Arno

#1
Hi, please send me a link to this site via PM.
Can it be that you have edited the used files layout?
Best Regards / Gruß
Arno
Please make a Donation for jDownloads and/or write a review on the Joomla! Extensions directory!
  •  

Arno

Hi ciroslitz,
after i could install the akeeba backup locally (and could use the debugger) it was possible for me to find the reason for your problem. As expected has this nothing to do with jDownloads.

The reason is the Button for Content plugin from your Buttons component.
I think that this parts are the problem:
        $allowed_contexts = array('com_content.article','com_content.featured','com_content.category');
        if (!in_array($context, $allowed_contexts))
        {
            return true;
        }

I think it should be:
        $allowed_contexts = array('com_content.article','com_content.featured','com_content.category');
        if (!in_array($context, $allowed_contexts))
        {
            return;
        }


You can use my modifications (without any guarantee). Use the unzipped file below and copy it over the original file in /plugins/content/buttons/. Afterwards are the numbers gone.  ;)

[gelöscht durch Administrator]
Best Regards / Gruß
Arno
Please make a Donation for jDownloads and/or write a review on the Joomla! Extensions directory!
  •  

ciroslitz

 I hope that the amendment does not create problems with plugin button.
Perfect thanks.
  •  

Arno

Quote from: ciroslitz on 10.10.2016 15:14:02
I hope that the amendment does not create problems with plugin button.
You could contact the developer from this extension...
Best Regards / Gruß
Arno
Please make a Donation for jDownloads and/or write a review on the Joomla! Extensions directory!
  •  

ciroslitz

  •