Mark Ward
Forum Replies Created
-
Forum: Plugins
In reply to: [WC Fields Factory] Showing custom field twiceHere is a hacky solution:
Add this script to the bottom of your product pages.
<script> jQuery(".wccpf-fields-group-1:not(:first)").remove(); jQuery(".wccpf-fields-group-2:not(:first)").remove(); </script>
Be sure and replace ‘.wccpf-fields-group-x’ with the id of your field groups.
I also had an issue with the datepicker script not being included so I added this to my functions.php file:
function add_my_scripts( $scripts) { if(is_product()){ wp_enqueue_script( 'jquery-ui-datepicker' ); } } add_action('wp_enqueue_scripts', 'add_my_scripts');
Hope this helps!
Forum: Plugins
In reply to: [WC Fields Factory] Showing custom field twiceAny update here?
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] “Manage subscriptions” list emptyYou need to see what the collation of the tables are in the database table “wp_subscribe_reloaded_subscribers”. I had to change the collation to “utf9_general_ci”.
@anttiviljami your plugin works as expected. Thanks!
any update on this?
Forum: Plugins
In reply to: [Explanatory Dictionary] Bug with escaping quotation marksI would also like to see the case-sensitivity feature. It would be great if it was an option at the item level, so if you have a proper noun or organization name like “YOU” for example you could just enable it when needed.
Great, simple plugin.
Hey Keith, thanks for the quick response here and the helpful tip. I know I’m not the only one experiencing this issue.
Forum: Plugins
In reply to: [Social] Scheduled autobroadcast not workingAlso having this issue…anybody make any progress or have any more information?
Forum: Plugins
In reply to: [Yelp Bar] Yelp Bar Star Images Link to https star image instead of http….This plugin cause warnings to appear because it is linking to unprotected images.
Forum: Plugins
In reply to: [WP eCommerce] Emails not sendingDid you figure this out?
Forum: Plugins
In reply to: [Multisite Global Search] Multisite Global Search PaginationI implemented pagination recently. See the code here: https://pastebin.com/7bHsKipa
Pagination magic starts on line 94 of pastebin code.
Look for function
if( !function_exists( 'ms_global_search_page' ) )
line 158 in multisite-global-search/inc/shortcodes.php.Got the help from this post: https://wordpress.mcdspot.com/2010/11/25/pagination-using-paginate_links/
Hope this helps.
You get any feedback on this?
<!– ADDED JQUERY CALL –>
<script type=”text/javascript” src=”https://code.jquery.com/jquery-1.5.2.min.js”></script>This line in your code might be messing things up…you have two versions of jquery being called…wordpress loads jquery by default.
Check this link out:
https://digwp.com/2009/06/including-jquery-in-wordpress-the-right-way/How are you including Jquery?
Set “shuffle” to false and see if that does anything. It looks like it is throwing an error.
Maybe that is defined in one of the other plugins that he offers?You also have a js error with your supersubs…perhaps it isn’t being loaded.