Cultivate
Forum Replies Created
-
Forum: Plugins
In reply to: [Cache Enabler] Cache-enabler 1.3.5 downloads 1.3.4I can confirm using the link @mahnunchik has posted i get version 1.3.4 files.
Im also seeing the same issue when using wpackagist, which is how i found this post.
Forum: Plugins
In reply to: [WooCommerce] Check if a product is grouped with get_type() not workingA little update on this.
When a product is viewed on a single product page the product correctly displays as a grouped product.
However im trying to display a link to purchase a specific product on a page. That is when the type is displayed as simple when using the above code.
@jerparx i can confirm updating Onesignal to 1.16.16 has resolved the issue for me.
Thank you.
Im seeing the same issue
Forum: Plugins
In reply to: [Send Emails with Mandrill] Support for Sub AccountsWe used the following function with the original Mandrill plugin. This appears to still work with this forked version.
function add_mandrill_sub_account( $message ) { $message['subaccount'] = 'SUB ACCOUNT NAME'; return $message; } add_filter( 'mandrill_payload', 'add_mandrill_sub_account' );I found the issue. I had some conditional code which was wrong.
$post->post_parent = 4So this was setting the post parent as 4. *facepalm*HI Michael,
Thank you for your response.There are no breadcrumb titles set. The breadcrumbs are pulling in another page as if it is the parent, when it isn’t.
Forum: Plugins
In reply to: [WooCommerce] Out of Stock EmailsIgnore this. Ive found the setting to change it under the inventory tab.
Forum: Plugins
In reply to: [WordPress File Monitor Plus] Exclusion pathsI too am having problems with the directories to ignore settings, nothing seems to work.
Below are the links i have at the moment.The first one is a full folder, the second a text file which is used to cache tweets, this file is updated regularly so i receive emails every hour for that one file.
/home/sites/[url]/public_html/_development/ /home/sites/[url]/public_html/wp-content/themes/[theme_folder]/_/tweets/tweets.txtIs there anything i can try?
I believe there is a check box within the internal links settings to remove blog page from breadcrumbs. Have you tried that?
Hi Both,
Thanks for your replies.There is one result on the following search which is still showing the problem and thats safety-surfaces.com/
I have added a 301 redirect pointing safety-surfaces.com to http://www.safety-surfaces.com but so far that doesnt seem to have done the job.
Thanks for the reply.
The site was loading to a certain point then nothing else was being output. Which, after a few hours away from it, got me thinking and i tracked it down to some code i was using to display the number of results returned for the search terms.
Why this was only effected by this one search term i dont know.
But im all sorted now thanks.
Im using a custom page template.
Yes, custom post type using custom taxonomies to organise the posts.
You can view the result hereI needed the breadcrumb to be Home > Case studies > title, using the internal links setting i was getting Home > Custom Taxonomy > title.
So im not saying the plugin is broken, just not working how i needed.
Ive already played around with the settings and it isnt quite working how i need, so ive added this to my header
<?php if ( is_singular( 'case-studies' ) ) { ?> <p id="breadcrumbs">You are here: <a href="http://www.soil-engineering.co.uk">Home</a> > <a href="http://www.soil-engineering.co.uk/case-studies/">Case Studies</a> > <strong><?php the_title(); ?></strong></p> <?php } else { ?> <?php if ( function_exists('yoast_breadcrumb') ) { yoast_breadcrumb('<p id="breadcrumbs">','</p>'); } ?> <?php }?>Which seems to do the trick.