blackbookdesign
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Updated to version 4.8.3.Seems like my error was cause by WPML version 3.7.1…
Forum: Fixing WordPress
In reply to: wpdb::prepare was called incorrectlyHi Steven,
after updating all my plugins one by one I’ve found that the culprit was WPML. I had version 3.7.1.
Thanks.Forum: Networking WordPress
In reply to: Cookies are blocked or not supported by your browser….do you have cloudflare or other CDN enabled?
Forum: Networking WordPress
In reply to: Cookies are blocked or not supported by your browser….How did you manage to fix this?
thx in advance.Forum: Plugins
In reply to: [Clean Testimonials] Example of function implementationhummm after modifying your snippet I was only able to output a string on echo and not return. But Testimonials are still getting printed in addition to my code. Did you recently test this feature in your dev (filter hook)?
Return doesn’t show anything…
There’s no further documentation in the forum or git so last resort is here.
I’ll buy you a beer ??Forum: Plugins
In reply to: [Clean Testimonials] Example of function implementationForum: Plugins
In reply to: [Clean Testimonials] Example of function implementationThanks heaps this is exactly what I wanted. Thanks for the good support.
Now time to rate your plugin. ??
cheersGreat. Thanks for the hint.
On my side I’ve found a sneakier way to “mask” the bug.
I actually turned off the php errors display in the wp-config.
SInce I was pushing the site into production I needed a quick solution.
While it will makes the error log grow, it still make it a viable solution.
+ it still shows the other related while clearing the array slice error.
if interested:error_reporting(0); @ini_set('display_errors', 0);
On my side the error was done using the integrated WP embed for youtube.
Cheers.
Did you find a solution for this?
I have the same problem…
thx.Forum: Plugins
In reply to: Description lenght longer? possible?well i still had to hack a couple line of code to make the option show_notes=true functionnal….
Forum: Plugins
In reply to: Description lenght longer? possible?yeah I know it’s not “a good approach” but I can’t seem to find the call in wp_list_bookmarks for notes. hence why I was using the description.
Any ideas?
Forum: Plugins
In reply to: [Contact Form 7] Spinning Arrowsguys try downloading the dev version here.
It’s supposed to work:
https://www.ads-software.com/support/topic/359317Forum: Plugins
In reply to: [Contact Form 7] Spinning ArrowsI had the same problem.
Seems like my error was caused by using jquery 1.4.1.min
Which is a really bad error!!!Verify if you are calling a newer version of jquery in your footer. Could be in your theme as well.
Forum: Plugins
In reply to: Form plugins & modal windows….I am trying to incorporate contact form 7 into a modal window as well.
I am using colorbox as modal.
Calling the form as inline. It shows up and then I can enter the text.
But when submitting it’s like it gets lost and doesn’t do anything but come back to teh initial state.I am just starting to troubleshoot this. I’ll let you know if I can help you/find my answers….
cheers
Forum: Plugins
In reply to: Query Category ParentOk so I was hacking like a noob. I didn’t manage to call anothe query.
<?php $parentscategory =""; foreach((get_the_category()) as $category) { if ($category->category_parent == 0) { $query=('cat= ' . $category->cat_ID. ''); // concatenate the query } } $my_query = new WP_Query($query); ; ?>
and then call
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
So in the end my error was pushing 2 exact same queries at the same time and jamming the system. well thats what I think it is… ??
Hopefully this can help some people in the long run.
Cheers