whatadewitt
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Instagram automatic embeds in editor not working… and there is the fix…
marking as resolved…
Got it… was an issue in the site settings!
Forum: Fixing WordPress
In reply to: Pagination on single.php causing 301 redirectHere’s a fix… I didn’t figure it out, but I thought I would share…
add_filter(‘redirect_canonical’,’pif_disable_redirect_canonical’);
function pif_disable_redirect_canonical($redirect_url) {
if (is_singular(‘pov_channel’)) $redirect_url = false;
return $redirect_url;
}WOOT!
–d
Forum: Fixing WordPress
In reply to: home pagination '/page/2' redirect to a post !!Here’s a fix… I didn’t figure it out, but I thought I would share…
add_filter(‘redirect_canonical’,’pif_disable_redirect_canonical’);
function pif_disable_redirect_canonical($redirect_url) {
if (is_singular(‘pov_channel’)) $redirect_url = false;
return $redirect_url;
}WOOT!
–d
Forum: Fixing WordPress
In reply to: Pagination on single.php causing 301 redirectadding to this… I noticed it was working locally when the port wasn’t the default 80… so anything like localhost:8080 was working fine…
… not sure if that helps anyone…
–d
Forum: Fixing WordPress
In reply to: Possibly hacked? Possibly urgent?Sure, the site is “theredspace.com”, but we’ve removed the plugin. I checked those links. I don’t see anything nefarious in anything they’ve mentioned…
Very strange, indeed.
So then each time I update the plugin, I have to set all of my user permissions back up? Or if I update on the FTP directly, without deactivating the plugin, will I lost my permissions set up then?
–d
Forum: Fixing WordPress
In reply to: home pagination '/page/2' redirect to a post !!Did you manage to get this figured out?
–d
Forum: Fixing WordPress
In reply to: Pagination on single.php causing 301 redirectYou ever get this figured out?
It’s strange, it works for me on 2 local builds, but doesn’t on another local build and/or a development server build… very strange…
–d
Thanks Vasyl!
EDIT: This works!
Forum: Fixing WordPress
In reply to: WP-Cron Not Working? (Please Help)I apparently needed to modify something in my .htaccess to enable the CRON to run… what a process.
Thanks for the reply!
–d
More info: only happens when I hide the “Posts” menu from this new user role… Not sure if that helps.
Hi Vasyl,
I’ve updated the plugin to 1.4… However, my “Author” users apparently can no longer create any of my custom post types of posts. That is, I have a “Video” type, and when I click “add new” I get a “You do not have sufficient permissions to perform this action”. Is there anything you can do to help me out with this?
Thanks,
–d
Thanks again, Vasyl!