oh_hello
Forum Replies Created
-
Hi @tushar284 do you have any update on this? FB/IG embeds are no longer working with the EmbedPress plugin.
Forum: Themes and Templates
In reply to: [Twenty Twenty] Disable mobile menu on Twenty Twenty themeAlrighty, I suppose I’ll stick with just removing the media queries for smaller sizes then. Thought there might be a more elegant way to do that. Thanks.
I’m having the same issue. To preview using the WP Admin Toolbar as you suggest, that requires the popup to be published, no? I’m not seeing it in draft mode.
Having to publish it to preview kind of defeats the purpose. Is there another way to preview the popup?
Thanks.
Forum: Fixing WordPress
In reply to: Cannot update plugins after upgrade to 4.6I tried re-installing WP but am getting the same error.
Yes, I believe my hosting company is using ModSecurity: “We have setup our own protocols on server management, but also use different applications to help us, such as ModSecurity, CageFS, CFS/LFD, CloudLinux configurations, etc.”
Forum: Plugins
In reply to: [qTranslate X] qTranslate X with Redirection pluginYes I did figure this trick out, I now have to create redirects for both of my languages.
Forum: Plugins
In reply to: [W3 Total Cache] Page cache causes 404 error on homepageAny thoughts on this? The issue is still persisting.
Forum: Plugins
In reply to: [W3 Total Cache] Page cache causes 404 error on homepageI checked the cache folder and this is the only file present in the main directory: _index.html_gzip.old. No _index.html or _index.html_gzip.
Here is the copied section you requested:
# END W3TC Browser Cache # BEGIN W3TC Page Cache core <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{HTTP:Accept-Encoding} gzip RewriteRule .* - [E=W3TC_ENC:_gzip] RewriteCond %{HTTP_COOKIE} w3tc_preview [NC] RewriteRule .* - [E=W3TC_PREVIEW:_preview] RewriteCond %{REQUEST_METHOD} !=POST RewriteCond %{QUERY_STRING} ="" RewriteCond %{REQUEST_URI} \/$ RewriteCond %{HTTP_COOKIE} !(comment_author|wp\-postpass|w3tc_logged_out|wordpress_logged_in|wptouch_switch_toggle) [NC] RewriteCond %{HTTP_USER_AGENT} !(W3\ Total\ Cache/0\.9\.4\.1) [NC] RewriteCond "%{DOCUMENT_ROOT}/wp-content/cache/page_enhanced/%{HTTP_HOST}/%{REQUEST_URI}/_index%{ENV:W3TC_PREVIEW}.html%{ENV:W3TC_ENC}" -f RewriteRule .* "/wp-content/cache/page_enhanced/%{HTTP_HOST}/%{REQUEST_URI}/_index%{ENV:W3TC_PREVIEW}.html%{ENV:W3TC_ENC}" [L] </IfModule> # END W3TC Page Cache coreThanks!
Forum: Plugins
In reply to: [W3 Total Cache] Page cache causes 404 error on homepageThanks for the reply, Go Canada!
1. I believe so. I see a bunch of files/folders in /wp-content/cache/page_enhanced/www.horse-canada.com. Is that the cache folder you mentioned?
2. It’s an actual 404, my 404 error template appears not just a blank page.
3. Switching to Disk: Basic from Disk: Enhanced appears to work. Any thoughts on why that could be?
Thanks for the response. Where could I find the GD search widget code to modify?
Forum: Plugins
In reply to: [Post Thumbnail Editor] Another issue with image not appearingSo today I went back through and deactivated my plugins again just to make sure I didn’t miss anything and lo and behold, there was a (customized) plugin with a blank space at the top of the file!
So the problem was exactly as you initially suggested, I just missed it. Thanks so much for the help.
Forum: Plugins
In reply to: [Post Thumbnail Editor] Another issue with image not appearingThanks for the quick reply. I’ve checked my own theme for empty space at the end of PHP files but no luck.
I also switched to the Twenty Twelve theme temporarily but that didn’t fix the plugin either. Is there something else amongst those links you shared with me that I’ve missed?
I’m also using a few plugins, so I tried deactivating those but that didn’t seem to fix the issue either.
Which version of the plugin are you using? I know I’m using the latest version (4.3.2) on WordPress 3.6.1 and I do have a checkbox on the right-hand side of the article editor which allows me to exclude the post from my sitemap.
Maybe you just need to upgrade the plugin?
Forum: Fixing WordPress
In reply to: WordPress import not importing custom taxonomyI’m at a loss here, I “downgraded” my 3.3.2 version to 3.2.1 and exported so I was doing an export/import from the same version of WP. Still no luck, I get the custom posts but no custom taxonomy or fields.
Just to clarify I’m doing an “All content” export to ensure I get all relevant info in my export file.
Just in case I’m missing something, here are the relevant bits from my export blog’s functions.php file (post/taxonomy only, the custom fields I’ll leave out for now):
function build_taxonomies() { register_taxonomy( 'site_archives_cats', 'site_archives', array( 'hierarchical' => true, 'label' => 'Categories', 'query_var' => true, 'rewrite' => true ) ); register_taxonomy( 'site_archives_tags', 'site_archives', array( 'hierarchical' => false, 'label' => 'Tags', 'query_var' => true, 'rewrite' => true ) ); } add_action( 'init', 'build_taxonomies', 0 ); function create_my_post_types() { register_post_type( 'site_archives', array( 'labels' => array( 'name' => __( 'Archives' ), 'singular_name' => __( 'Archives' ) ), 'public' => true, 'show_ui' => true, 'publicly_queryable' => true, 'exclude_from_search' => false, 'menu_position' => 5, 'supports' => array( 'title', 'editor', 'excerpt', 'revisions'), 'taxonomies' => array( 'site_archives_cats', 'site_archives_tags'), 'has_archive' => 'article-archives', 'register_meta_box_cb' => 'add_additional_info_meta', 'rewrite' => array('slug' => 'archives') ) ); } add_action( 'init', 'create_my_post_types' );And my import blog’s functions.php is an exact copy/paste.
Any ideas at all on why the custom taxonomy is not being imported? I feel like it must be something painfully simple, but I just don’t get it.
Thanks.
Forum: Fixing WordPress
In reply to: WordPress import not importing custom taxonomyThe posts I’m trying to import are just one custom post type. The site has other post types with lots of content (and a few plugins) so I’m not ready to undertake an update at this point. Especially if I’m not sure it will solve my import issue.
Forum: Fixing WordPress
In reply to: WordPress import not importing custom taxonomyNot really, the sites were just built at different times. Do you think it will make a difference? Thanks.