ethan11698
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Events Calendar 404We are using wpengine and the 404 errors are only on the events unfortunately. We have been in touch with them and they added the following cache exclusions:
path: ^/wp-content/plugins/the-events-calendar/(.*).js
path: ^/wp-content/plugins/the-events-calendar/(.*).css
path: ^/wp-json/?
path: ^/event/?
We also use WProcket to help with site speeds. Everything was working with no issues for a long time before this so I feel it may be related to a recent update.Forum: Fixing WordPress
In reply to: CSS Fix to Vertically Align ColumnsHi thanks so much, that worked, the issue is fixed across all pages!
Forum: Themes and Templates
In reply to: [Astra] Hamburger menu disappearing on mobilefixed it by getting rid of my menu and creating a new elementor menu and using the hamburger menu for that.
fixed it by getting rid of my menu and creating a new elementor menu and using the hamburger menu for that.
Forum: Fixing WordPress
In reply to: Vertical Alignment of Blog PostsHi thank you, any chance you could help me out with what CSS to put? I should have noted I am not experienced in flexbox
Forum: Fixing WordPress
In reply to: Blog ‘See More’ Button AlignmentApologies, I am not sure how to attach a picture. I am referring to making the buttons vertically aligned as at the moment some are higher/lower than others. Is there any way to ensure they all vertically align? So for instance the articles with less text would still have the button vertically align with a more text heavy one.
Forum: Plugins
In reply to: [Site Reviews] Unapproved Reviews HelpThank you
Is there a way I can send an email if it’s binned? Because I think it’s more relevant with what I’m trying to achieve I want to notify the user when their review is rejected and not posted.
Forum: Plugins
In reply to: [Site Reviews] Unapproved Reviews HelpThe site sends mail as it sends an email when the email is approved consistently but not when one is unapproved
Forum: Plugins
In reply to: [Site Reviews] Top Reviews HelpI mean the overall rating in the excerpt for each post inside posts in sidebar? So the top 3 display now in posts in sidebar with their thumbnail and excerpt but not rating is it possible to display the rating of the top 3 in posts in sidebar?
Forum: Plugins
In reply to: [Site Reviews] Unapproved Reviews HelpI used this code to send an email for unapproved emails. However, it doesn’t consistently send them I have only managed to send one email and everytime I unnaprove a review nothing happens. Why is this?
add_action('transition_post_status', function ($newStatus,$oldStatus, $post) { if (in_array($oldStatus, ['new', $newStatus]) || 'site-review' != $post->post_type || 'pending' != $post->post_status) { // make sure the new status is pending (unapproved) return; } // Change the subject and message as needed $subject = "Review Unapproved"; $message = "Sorry, your review has been unapproved. The reason being is that the post is inappropriate or irrelevant to the show. Please try again with an appropriate review for approval. "; $metaKey = '_sent_approved_notification'; $review = apply_filters('glsr_get_review', null, $post->ID); $alreadySentNotification = get_post_meta($post->ID,$metaKey, true); if (!empty($review->email) && !$alreadySentNotification) { if ($sent = wp_mail($review->email, $subject, $message)){ update_post_meta($post->ID, $metaKey, true); } else { apply_filters('glsr_log', null, 'The notification to <'.$review->email.'> was not sent. Please verify that your server is able to send emails correctly through WordPress.'); } } }, 10, 3);
- This reply was modified 4 years, 7 months ago by ethan11698.
Forum: Plugins
In reply to: [WP Blog and Widgets] blog category helpSolved! thank you!
Forum: Plugins
In reply to: [WP Responsive Recent Post Slider/Carousel] Custom categoriesThis worked perfectly thank you!
Forum: Plugins
In reply to: [Site Reviews] Top Reviews HelpUsing posts in sidebar I have successfully got the top reviews to show which is great! Is there any way to show the rating also or even the stars?
Forum: Plugins
In reply to: [Site Reviews] Unapproved Reviews HelpI’ve successfully got it to email when the review is approved. How can I make it so it emails you when approved and also when unapporoved?
Forum: Themes and Templates
In reply to: [MH Magazine lite] HelpSolved it, it was my fault I had made all my items a sub item of another sub item so I essentially had a multi level dropdown menu with just one level.