Tigerton
Forum Replies Created
-
Forum: Plugins
In reply to: [Beautiful taxonomy filters] Plugin filtersHi,
You can get this done with some basic CSS really.
Something like this might do the trick:.beautiful-taxonomy-filters-select-wrap { display:flex; } .beautiful-taxonomy-filters-widget.widget .beautiful-taxonomy-filters-tax { width: auto; }
Forum: Plugins
In reply to: [Beautiful taxonomy filters] Compatibility issue with PolylangHmmm… so how does polylang take over and throw the translated rules instead.. Maybe it highjacks the page and redirects before rendering.
In the file admin/admin-notices.php you will find some code looking for database columns that might be missing, for me this error was caused by this.
Possibly after an upgrade of the plugin the database user had no rights to alter the database tables which prevented the columns to be created.
Login to the database and create the columns ‘cml_cat_translation_slug’ and ‘cml_cat_description’ as varchar or similar respectively in the table ‘ceceppa_ml’. That way the message will go away.
I’m not sure this is a actual solution or even a correct way to “fix” the issue but the nag will go away =)
Forum: Plugins
In reply to: [Beautiful taxonomy filters] Change "Apply Filter" textOutofhouse you should really create your own support thread for a new question.
But I’ll answer you here this time. No there’s no reason why you couldn’t use that function. Like you say, as long as there’s only one “apply filter” string its fine. However it might not be the best solution performance-wise. I’ve not read up on the filter so I cant say ??
Forum: Plugins
In reply to: [Beautiful taxonomy filters] PostsHi, and thank you for the kind words.
Regular posts has been left outside the running version due to some technical issues.
We are working on a fix for it but we need to run some more test. Hopefully it will be included in the next update.Cheers
Forum: Plugins
In reply to: [WordPress Popular Posts] Only admin views are registered 3.0.3I was hoping i could send the link in private not hide it completely =)
It helped me a lot with the info on AJAX in Firebug. I had a iframe video in most of the pages i tested and that triggered an error preventing more Firebug errors.
After that was solved i located that AJAX-file wasn’t loaded properly. Due to a code in functions that was used to redirect users and/or hide admin-bar (weird since it was functional a week ago).I have tested as logout user and it collects counts again. Do you know what code changes in your plugin that could interfere with code like that?
Thanks
Forum: Plugins
In reply to: [WordPress Popular Posts] Vistor's visit isn't counted after 3.0.2I have already gone through all knows steps this forum has to offer. Still no vail.
Please helpForum: Plugins
In reply to: [WordPress Popular Posts] Vistor's visit isn't counted after 3.0.2I have the same problem since the last update:
Only admin views are counted after updating.
I have no special htaccess code
I have no cache plugin
I have set everyone in adminPlease look into this matter within the plugin. I have no errors of javascript in firebug. Should i start the log-file, does errors from your plugin appear there?
Forum: Plugins
In reply to: [Co-Authors Plus] Getting co-authors posts to show on author.phpYou can add taxonomy and look for nicename, not sure if this helps in your case,
$user_info = get_userdata($curauth->ID);
$user_nicename = $user_info->user_nicename;
$loop = new WP_Query( array( ‘post_type’ => ‘posts’, ‘posts_per_page’ => 100,’tax_query’ => array(
‘taxonomy’ => ‘author’,
‘field’ => ‘slug’,
‘terms’ => $user_nicename,
), ) );Forum: Plugins
In reply to: [Arconix FAQ] Error when trying to activate pluginI hade the same issues when updating.
Thought that I would enlighten you guys with a quick fix. The error comes from a missing dot in two lines of the plugin.
Replace the line on 296 and 346 in the file “arconix-faq/plugin.php” with the following,
$return .= ‘<div id=”‘. $link . ‘” class=”arconix-faq-title’ . $lo . ‘”>’ . get_the_title() . ‘</div>’;
Cheers