[email protected]
Forum Replies Created
-
Adding my support to this request. Would really like to be able to add a custom post type to the list, even a custom post type I created myself.
Forum: Fixing WordPress
In reply to: et_temp folder in uploads – hacked?@macmanx Thank you for that. I always maintain a backup on a local drive not connected to the internet, so I’m good there. Also, I’m familiar with the scanning and security plugins you have mentioned, but thank you in case anyone else needs that information.
I was more interested in knowing if anyone knows anything else about the et_temp folder. Seems the internet is full of sites with that folder and all their upload data (even multisite upload data) is freely available because of it. Massive hole in security, in my humble opinion.
Is there any information specifically about what plugin, or security flaw is responsible for the et_temp folder? There doesn’t seem to be much documentation of it online.
Any knowledge you might be able to share would be wonderful.
Thank you.
Forum: Plugins
In reply to: [Login With Ajax - Fast Logins, 2FA, Redirects] reCAPTCHA support?Agreed! Same request here.
Forum: Plugins
In reply to: [PHP Compatibility Checker] Plugin does nothing?Same issue here. Downloaded plugin and activated, but when I click scan I only get the spinning wheel for a second or so and then nothing. I have wp-chrontrol installed and I don’t see any job running for this plugin. What is the chron job called? Is it scheduled for later? Am I missing a step?
I’m running WordPress 4.7.2 and using multisite.
Forum: Plugins
In reply to: [Contact Form 7] Red Border Error issueThank you. Fixed the problem right away. I appreciate the quick response.
Forum: Plugins
In reply to: [Contact Form 7] Red Border Error issueForm page is at https://www.franberger.com/contact/
Forum: Plugins
In reply to: [Constant Contact for WordPress] Landing Thank You pageUse the redirect_url parameter in your shortcode. For example [constantcontactapi formid=”1″ redirect_url=”https://wordpress.com”%5D .
Must be a valid URL.
Forum: Plugins
In reply to: [PrestaShop Integration] Impossible to add the product to the cart.I discovered that I needed to apply the 1.5 patch and remove the subdomain redirect that I put in earlier. Now the products all show up and when I click to add product to the cart the animation happens, but the product does not actually get added to the cart.
I will keep poking at it.
Forum: Plugins
In reply to: [PrestaShop Integration] Impossible to add the product to the cart.I made the mistake of deleting the plugin and now i cannot reactivate it at all.
I keep getting an error when trying to reactivate that says “are you sure you want to do this?” and then I have no option to go forward.
According to this website https://www.wpbeginner.com/wp-tutorials/how-to-fix-are-you-sure-you-want-to-do-this-error-in-wordpress/
it is because of a nonce issue.
Any chance you can look into this?
Never mind, plugin conflict. Resolving on my own. Thanks.
Never mind. I just needed to use a newer version of PHP on my server. My bad.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Emails not sendingHaving issue with the subscribe to comments emails as well. We have received reports from people signing up to follow comments on a post, but they are not receiving the notification emails when a new comment is added.
Here is the site GeneralAviationNews.com
Functionality currently deactivated to reduce frustration, but I can turn it back on if you feel you have a fix in place.
jetpack version 2.2.1 and wordpress version 3.5.1
Thanks!
Forum: Plugins
In reply to: [Facebook Feed Grabber] Feed shows first ever post – want to show latestPlease disregard. I was able to find the correct feed id and now have it working. Thank you.
Forum: Plugins
In reply to: [Google Doc Embedder] Can you control the zoom in the viewer?Wonderful. At least I have a place to start looking. I appreciate the help.
Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] Insert PHP into is_home statementI am running the slideshow on my front page (dev site, no live available yet) with this conditional section
<?php if (is_front_page()) {
echo ‘<div id=”featuredSlider”>’;
echo ‘<div id=”slideContainer”>’;
if ( function_exists( ‘meteor_slideshow’ ) ) { meteor_slideshow(); }
echo ‘</div>’;
echo ‘</div>’;
}
?>
So, I would expect the slideshow functionality to only be called if it is the front page.But when I go to any other page in my site, I get an error in the console saying “[cycle] terminating; zero elements found by selector” and it kills other jquery scripts that are supposed to be running on the page.
I traced the error back to line 58 of the jquery.cycle.all.js file and read through the Is your DOM ready tutorial, but I can’t seem to see the need for this error since this file really shouldn’t even be loading if it’s not the front page.
Am I missing something?