luckyfella73
Forum Replies Created
-
Forum: Plugins
In reply to: [User Role Editor] Undefined property: Ure_Lib::$proThanks!
Forum: Fixing WordPress
In reply to: functions.phpHi,
while all other files in your child-theme folder “replaces” the same files in the main-theme folder when you add them, the code of the functions.php in your child-theme is “added” to the code of the functions.php of the parent theme. That means if you need new functionality that goes to the functions.php just put the new/additional code into your child theme functions.php.
Usually the parent functions.php refers to other files (using the include function) so you can’t just copy the whole parent functions.php to your child folder.Hope that makes sense a bit.
Forum: Plugins
In reply to: [WP Glossary] No tooltips on hoverVisiting your site I get a lot of javascript errors listed in my chrome console (caused by “jquery.masonary.min.js”). I would recommend to get rid of them first to get sure the problem is really qtip2 related. Maybe you set up a test page not linked in you WP menu loading just the neccessary js files needed by WP glossary.
Forum: Plugins
In reply to: [WP Glossary] No tooltips on hoverThe plugin version available on www.ads-software.com seems not to be the updated version. TCBarret said its updated in trunk! To get that version have a look at his github repository:
https://github.com/tcbarrett/WP-Glossary/blob/master/js/wp-glossary-qtip2.jsForum: Themes and Templates
In reply to: archive-{custom_post_type}.php never calledAfter more hours of research and test I finally found the problem.
The problem was I got an example code from a friend who set up a
custom post type to manage banner images. For the banner images
should not be visible in a search or are not meant to be displayed
an any page he set:
'publicly_queryable' => false,
Setting that to “true” or just leave it out because the default
value is “true” everything works.