Anthony Valentine
Forum Replies Created
-
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Can’t signup more than onceUnfortunately it’s not resolved I’ll have to revisit it. I’ve been so busy.
Thanks,
AnthonyForum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Can’t signup more than onceI figured out what was happening, but the real problem is that when people sign up for a separate form they aren’t getting the second Tag that is assigned to that form.
They sign up for one form, get a Tag applied, and then let’s say they want to sign up for another form (to get a different eBook or something), they aren’t getting the second forms Tag.
They are prompted with “Thank you, your records have been updated!” but they new tag isn’t added to the email address, which then doesn’t trigger the OnGoing message via Tag inside of mailchimp.
Anyone have an idea of a solution?
Anthony
Forum: Plugins
In reply to: [WooCommerce] Re-Ordering TabsI don’t think it’s working either.
This:
add_filter( ‘woocommerce_product_tabs’, ‘woo_reorder_tabs’, 98 );
function woo_reorder_tabs( $tabs ) {$tabs[‘seller’][‘priority’] = 1;
return $tabs;
}Did not work for me either.
It’s going in the functions.php file right?
ahhh makes sense, I read that too and didn’t understand it at first. Thank you!
I can’t get it to display either. Has this been fixed?
Weird, when I disabled the “Use User’s Profile URL as URL” setting. The input field showed up.
Forum: Plugins
In reply to: [Yoast SEO] KeyphraseYa I figured.
Something is wrong with my premium version. I’ve always had more that one key phrase. Now it’s only letting me use one.
I bought the premium plugin at nobuna.com.
I’ve contacted their support.
Thanks
Forum: Plugins
In reply to: [Autoptimize] FIxing some Pagespeed errorsMost of my pages need that jquery file unfortunately. It would be nice if you could exclude it from certain pages only.
So I’ve tried deferring the inline css and if anything I feel like I got worse results and it didn’t get rid of the error?
Maybe I’m doing something wrong. I used this site to find my critical css: https://jonassebastianohlsson.com/criticalpathcssgenerator/
Then I added it into the autoptimize Inline and Defer section.
Thoughts?
Forum: Developing with WordPress
In reply to: Display Category Descriptions on Custom Recipe PostsI’m also having trouble finding where to even put the code once I figure it out.
Forum: Developing with WordPress
In reply to: Display Category Descriptions on Custom Recipe PostsYa i was hoping to show the description for each category. Low Sodium, Low Carb, Low Sugar etc….
I’ll continue to dig around It’s tough when you have absolutely no knowledge in PHP haha
Trial and error I guess!
Thanks a lot,
Anthony
Forum: Plugins
In reply to: [MC4WP: Mailchimp User Sync] First and Last Name Sync not workingThank you for your help.
Forum: Plugins
In reply to: [Autoptimize] JS Error in ConsoleI tried that it didn’t work.
It’s better after that…But not working fully. You click the accordion and it drops down and then there’s no content inside the panel.
I’d rather not use:
remove_filter( ‘the_content’, ‘wpautop’ );
For the entire website.
But it’s not the end of the world.
Anthony
Forum: Plugins
In reply to: [Autoptimize] JS Error in ConsoleI added:
remove_filter( ‘the_content’, ‘wpautop’ );
remove_filter( ‘the_excerpt’, ‘wpautop’ );To my functions.php and that did the trick…
Thanks
Forum: Plugins
In reply to: [Autoptimize] JS Error in ConsoleThe only script I have on that page is:
<script>
var acc = document.getElementsByClassName(“accordion”);
var i;for (i = 0; i < acc.length; i++) {
acc[i].addEventListener(“click”, function() {
this.classList.toggle(“active”);
var panel = this.nextElementSibling;
if (panel.style.display === “block”) {
panel.style.display = “none”;
} else {
panel.style.display = “block”;
}
});
}
</script>And there is no <p> is there. Is wordpress placing one there after I save?
Should I not be putting the JS directly in the WP page? I have the Visual settings off and I’m working only in Text/HTML.
I also tried adding this to the functions.php and had no result:
function wpb_hook_javascript() {
if (is_page (’10’)) {
?>
<script type=”text/javascript”>
// my script went here.
</script>
<?php
}
}
add_action(‘wp_head’, ‘wpb_hook_javascript’);Forum: Plugins
In reply to: [Autoptimize] JS Error in ConsoleLeft a review.
While I have you. Can you figure out why this accordion isn’t working? I feel like it’s the same issue I just don’t now how to find the issue.
It’s saying “Unexpected token <”
Page: https://www.cukebook.org/guides/herbs-and-spices/
The accordion code works on my HTML websites but not the WP site.