Martin Blumenfeld
Forum Replies Created
-
I tried setting the WP_CONTENT_URL as seen below, but it’s removing the forward slash between the domain and wp-content folder.
define( 'WP_CONTENT_URL', 'http://jaminthevalley.com/wp-content');You can see these files failing to load here as well: http://jaminthevalley.com/lineup/.
The wordpress URL in the settings > general section is set to http://jaminthevalley.com.
Forum: Plugins
In reply to: [WP Media Cleaner] ACF and other meta field pluginsI just checked out the source for your plugin and it looks like you’re already covering the ACF image and file fields with your wpmc_check_db_has_featured function.
Forum: Plugins
In reply to: [WP Media Cleaner] ACF and other meta field pluginsI’m definitely interested in this one. I have a site with 19,000+ media items and it could DEFINITELY use a cleanup.
I just tried to find an active gallery and we don’t have any at the moment, so it’s just in the backend.
We have “http://www.typecamp.org” in both cases.
The Site URL and WordPress URL are being defined in the wp_options table. I tried adding a forward slash to the end of the URL, but that didn’t help.
Forum: Plugins
In reply to: [Authors Widget] Include, Exclude options do not workIs you user author login names instead of ID’s the field will work.
ie: monkeypress,revathir vs 112,123
Forum: Plugins
In reply to: [Redirection] Redirection Loop FixIf you’re running the redirection plugin that I referenced and uninstalled it, the redirection loop should disappear. You might have some .htaccess redirects set up that are causing a loop now.
Now the fix that I posted won’t clear up old loops automatically unless you update the page that is causing the loop. To find the redirect loop you need to navigate to the redirection plugin and then do a search for the post URL under the modified posts group. Next delete any of the entries that have the new url as the source of a redirect.
Forum: Plugins
In reply to: [Redirection] Redirection Loop FixI probably should have added a comment to that code. This fix deletes any redirect that has the new redirects destination as its source url and its destination url as the new redirections source url.
Forum: Plugins
In reply to: [Redirection] Redirection Loop FixI haven’t heard anything from the developer, though figured it was time to dig into the code. Here’s a fix for this issue. In the /wp-content/plugins/redirection/models/redirect.php file add this line:
$wpdb->query($wpdb->prepare("DELETE FROM {$wpdb->prefix}redirection_items WHERE url='%s' AND action_type='%s' AND action_data='%s';", array($data['action_data'], $data['action_type'], $data['url'])));just before this insert statement on line 210:
$wpdb->insert( $wpdb->prefix.'redirection_items', $data );Forum: Plugins
In reply to: [Gravity Forms Salesforce Add-on] "Enable Salesforce integration" MissingSame problem here. It looks like the latest GF update broken this integration.
Forum: Plugins
In reply to: [Analytics360] [Plugin: Analytics360] Google Authentication ErrorI’m seeing this issue again. Did Google change their API again?
Forum: Plugins
In reply to: [Gravity Forms Salesforce Add-on] Web-to-Lead and APIAh perfect, I didn’t even notice the two plugins that get installed. I only have my clients OrgID at the moment, though I’ll work on getting a login for their API.
Forum: Plugins
In reply to: [Gravity Forms Salesforce Add-on] Web-to-Lead and APIHow do you choose, which version you use? Or does that happen automatically? Does the API version offer deduplication by checking whether a lead exists already?