kidalpha
Forum Replies Created
-
Forum: Plugins
In reply to: [Squelch Tabs and Accordions Shortcodes] Is it possible to link to a tab?Hi Matt,
There’s a couple of articles on it:
https://forum.jquery.com/topic/link-to-specific-tabI’m not hacker though, but I’ll try to modify your plug to support this. Will let you know if I’m able.
Cheers!
Jonathan
Forum: Plugins
In reply to: [Nano Plugin Manager] Don't Sort All Categories@jhdemicco, I just did this and am happy to share. Copy the following XML into a file with an XML extension and import it into the plugin manager: (1) modify the ‘Release News’ to whatever category name you want to sort and (2) change the ‘post_modified’ to the wp_post table column name you want to sort by and (3) change DESC to ASC if you want to go ascending:
<data> <name>Sort Posts by Last Modified</name> <description>Sorts all your posts by Last Modified.</description> <type>filter</type> <tag>posts_orderby</tag> <arguments>$orderby</arguments> <content> if(!is_admin() && is_category('Release News') ){ return 'post_modified DESC'; } else{ return $orderby; } </content> <priority/> </data>
Cheers!
Hi Mikko – I had the same issue bog me down for MONTHS until I found this post. I turned off the custom except code and well and the results returned from searches are now in 5-6 seconds vs 20+ seconds before.
It would be great if you bubbled this up to a note in the settings page that said “if you’re searches are slow as heck, try turning this option off if you’re not using it.
Hi-
I’ll concur that it is breaking shortcodes. I’m actually using the Embed Posts plugin to combine some posts together. However, on the single page view option it doesn’t seem to apply the shortcode filters. I just see the following when I should actually see article content:
[[java-filters]][[test-youtube-and-vimeorrr]]
[[java-filters]]
@michal_cksource thanks for the quick reply and help getting over this issue. very appreciated and happy customer.
Hi – I disabled the Admin Columns plug and it looks like our regular columns aren’t sorting correctly. I don’t think it’s this Admin Columns plug, but something else.
Donated a couple buck to buy you a few beers! Thanks for the great plug. Use it ALLLLLL the time!
Hi – I think dalben should check out Gravity Forms. Might be more appropriate for what he’s after with the User Generated Posts.
Hi – it took me a few minutes to realize why this wasn’t working for me. I have my WP site installed at https://domainname.com/wp_install_dir, but I have a mod rewrite going to mask it to https://domainname.com/. ec-templates-metabox.php has: ‘url’: ‘<?php bloginfo(‘url’); ?>/wp-admin/admin-ajax.php’ ==> The <?php bloginfo(‘url’); ?> is pulling back the the location of admin-ajax.php as https://domainname.com/wp-admin/admin-ajax.php, when it should really be https://domainname.com/wp_install_dir/wp-admin/admin-ajax.php.
I hardcoded the right location of this file in ec-templates-metabox.php and all is good.
People having issues with this plug might want to see if this is their issue as well. If you have Google Chrome, just look at the JS debugger when you click the “Load Template” button.
Hi – so I stood up a clean wordpress site, CKEditor and your plugin and they all worked together just fine. I must have some other issue in my WP installation preventing your plugin from working.
I’ll dig into this.
Thanks!
I marked the post as working ??
I’d like to formally request we get it to work with CKEditor ?? – I’ll create a clone site and get you access to the system.