tajensen
Forum Replies Created
-
@drewhagni I ran into the same issue today and found that setting the animation setting to “None” under Display > Animation > Animation Type allowed the popups to stack correctly.
Forum: Plugins
In reply to: [WP Disable Comments] Not working – alternativesFor anyone wondering about this, the plugin does work as intended when configured properly. Here’s an example of how to set it up:
Say I want to enable comments only on posts that are categorized as “WordPress”. First I need to go to the plugin settings page, check the box for disable comments and select all categories other than “WordPress”. Next I need to edit the posts in the “WordPress” category to make sure that the comments status is set to “Allow” in the in-post settings (the Discussion box on the post edit screen). You can do this quickly by bulk editing the posts. New posts will have comments enabled by default, but the old “WordPress” posts might have been set to disabled, hence the need to edit them. Lastly, realize that if any of the post’s categories are set to have comments disabled, then comments will be disabled even if the post has a category of “WordPress”.
We just ran into the same error, but it turns out the problem was with caching. We turned WP Rocket off for that specific page and the upload function worked again.
Forum: Plugins
In reply to: [Theme My Login] Execute a function immediately after successful loginThanks!
Forum: Plugins
In reply to: [Mailpoet - Contact Form 7 Integration] No addition to subscribersI was having trouble as well, but changed the ’email’ field to ‘your-email’, which fixed the issue. Thanks!
Forum: Plugins
In reply to: [WC Variations Radio Buttons] print_attribute_radio functionYes, please do include this in the next update. Thank you!
Forum: Reviews
In reply to: [WordPress HTTPS (SSL)] Had to disable WooCommerce firstThe HTTPS plugin was conflicting with my client’s WooCommerce setup. I remember seeing in the WooCommerce settings something about forcing HTTP redirect after leaving the WooCommerce checkout. Maybe deselecting that option would allow WordPress HTTPS to work simultaneously with WooCommerce, though I didn’t test it…we no longer needed WooCommerce.
Good luck!
Forum: Reviews
In reply to: [X Calendar Express] Insecure – HACKEDI did a thorough scan of the database and it was apparent.
Also, read here: https://www.ads-software.com/support/topic/undefined-index-post_type-xcalendar-error?replies=2
Forum: Themes and Templates
In reply to: [Flat Bootstrap] Responsive headerTo answer my own question, here’s the solution I came up with:
Copy header.php into the child theme and replace this existing code:
<div class="custom-header-image" style="background-image: url('<?php echo header_image() ?>'); width: <?php echo get_custom_header()->width; ?>px; height: <?php echo get_custom_header()->height ?>px;">
with this code:
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"> <img src= "<?php echo header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height= "<?php echo get_custom_header()->height; ?>"/> </a>
Forum: Plugins
In reply to: [WooCommerce Simply Order Export] Export delivery date and timeProbably the easiest is to see the php file here
Thanks!
Forum: Plugins
In reply to: [WooCommerce Simply Order Export] Order DateIn the above code
$settings['payment_method'] = array(
Should it instead be$settings['order_date'] = array(
?