rightmost
Forum Replies Created
-
I had the same issue. I just rolled back to Woocommerce v3.5.3 as a temporary fix.
Forum: Plugins
In reply to: [WooCommerce] Error after migrating websiteI had the same problem and going to the cart link did not work for me.
Instead I deactivated and then reactivated the associated woocommerce plugins and that fixed this issue for me.
Forum: Plugins
In reply to: [Mailchimp List Subscribe Form] Disable styleHi RobotHero, I had the same issue and I ended up editing the Mailchimp plugin files to remove the css completely. Here’s what I did…
In mailchimp.php comment out the following 2 lines:
LINE 108
wp_enqueue_style('mailchimpSF_main_css', home_url('?mcsf_action=main_css&ver='.MCSF_VER));LINE 109
wp_enqueue_style('mailchimpSF_ie_css', MCSF_URL.'css/ie.css');In mailchimp_plugin.php comment out everything between the
<style></style>tags (LINES 44 to 117).Forum: Plugins
In reply to: [Multiple Post Thumbnails] Exclude the thumbnail from galleryHello, I would also love to be able to exclude the extra thumbnail from a gallery. The client will not be able to add the gallery shortcode themselves, so ‘exclude=22’ won’t work.
What I have done is place this in the template:
<?php $thumbnail_id = get_post_thumbnail_id(get_the_ID()); ?> <?php echo do_shortcode('[gallery exclude='.$thumbnail_id.']'); ?>This removes the regular thumbnail, but not my secondary thumbnail. Any ideas?
Thanks!
Forum: Fixing WordPress
In reply to: Multiple Custom Post Type taxonomy terms loops – how?Thank you! This worked for me.
Never mind, I realised I could add photos to multiple categories, so I could just create a new category that combines all the photos in categories 2, 3 and 7 (duh!)
Eg:
[slideshow gallery_id=”8″]Forum: Plugins
In reply to: [WP eCommerce] [Plugin: WP e-Commerce] Product Operation Timed OutOMG thank you @justinsainton!
I have been tearing my hair out with the same issue. Turned out the customer had added a whole heap of links to the ‘update services’ list to ping sites.
Forum: Fixing WordPress
In reply to: how do I find and replace wordpress content characters?Thanks Harry, that worked for me.
Just to add on to this for anyone else interested… this is what I added to my functions.php file:
<?php function replace_content($content) { //add content that you wish to replace to this array $search = array('&', 'é', '—', '‘', '’', '“', '”'); //add content that will replace old content to this array $replace = array('&', 'é', '—', '‘', '’', '“', '”'); $content = str_replace($search, $replace, $content); return $content; } add_filter('the_content', 'replace_content'); add_filter('the_excerpt', 'replace_content'); ?>Forum: Plugins
In reply to: [WordChimp] [Plugin: WordChimp] Add links to post excerptsHi vdowsett, I ended up modifying the wordchimp.php file to get this to work. This is what I did:
On line 914, replaced:
$sql = "SELECT post_author, display_name, post_date, post_content, post_title, post_excerpt, post_name FROM {$wpdb->prefix}posts LEFT JOIN {$wpdb->prefix}users ON {$wpdb->prefix}posts.post_author = {$wpdb->prefix}users.ID WHERE {$wpdb->prefix}posts.id = {$_POST['post_id']}";with:
$sql = "SELECT post_author, display_name, post_date, post_content, guid, post_title, post_excerpt, post_name FROM {$wpdb->prefix}posts LEFT JOIN {$wpdb->prefix}users ON {$wpdb->prefix}posts.post_author = {$wpdb->prefix}users.ID WHERE {$wpdb->prefix}posts.id = {$_POST['post_id']}";And to add in the title link, on line 918, replaced:
$display = "<h4>{$post['post_title']}</h4>";with:
$display = "<h4><a href='{$post['guid']}'>{$post['post_title']}</a></h4>";Forum: Fixing WordPress
In reply to: 3.3/WP E Commerce -Double product titles?Do you have the Gold Cart plugin installed as well? I had a similar issue when I upgraded to WP 3.3
Once I upgraded the Gold Cart plugin the issue was fixed.
Forum: Fixing WordPress
In reply to: Breadcrumb NavXT not working correctlyI just stumbled across this post as I was having the same issue – thanks mtekk!