wambamboo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 404 error page not workingHi did you manage to solve this?
Forum: Fixing WordPress
In reply to: Moved WordPress Domain, Image links brokenThis is an update on my issue and its related problems:
I have recently moved a wordpress site from one domain to another, but am having a few problems.
1) My image links did not update
2) The image on Really Simple Captcha no longer works
3) My custom 404 page is no longer styled.I tried to update the permalinks in the database using the following queries:
UPDATE wp_options SET option_value = replace(option_value, 'https://www.oldurl', 'https://www.newurl') WHERE option_name = 'home' OR option_name = 'siteurl'; UPDATE wp_posts SET guid = replace(guid, 'https://www.oldurl','https://www.newurl'); UPDATE wp_posts SET post_content = replace(post_content, 'https://www.oldurl', 'https://www.newurl'); UPDATE wp_postmeta SET meta_value = replace(meta_value,'https://www.oldurl','https://www.newurl');
but it does not seem to have worked. I have also tried the Plugin Velvet Blues but this didn’t work either.
Any help would be great
ThanksForum: Fixing WordPress
In reply to: Moved WordPress Domain, Image links brokenYes, tried clearing the cache and using a different browser. I think it’s definitely a database problem. Tried Velvet Blues plugin but it didn’t work for me. Are there any other good search and replace plugins?
Thanks
Forum: Plugins
In reply to: [Collapse-O-Matic] Collapse-O-Matic How to Collapse?Excellent, thanks ??
Forum: Plugins
In reply to: [Collapse-O-Matic] Collapse-O-Matic How to Collapse?Thanks. After adding rel=”-highlander” the beginning of the newly opened content did not show at the top of the screen any more. So i added findme=”auto”, unfortunately this didn’t show the new content at the top of the screen either.
Forum: Plugins
In reply to: [WP Category Sticky Posts] Add Media Button Doesn't WorkSame issue here. I have deactivated the Plugin for now but any updates on this would be good. Thanks
Forum: Plugins
In reply to: [Plugin: Jetpack]Lost connection to WordPress.comOk I have managed to reconnect but it’s only showing my stats up to last November, which is when I changed my site’s database. is there any way of recovering my stats?
Forum: Plugins
In reply to: [Collapse-O-Matic] Collapse-O-Matic How to Collapse?Great, thanks. I guess what I should have asked is, how do I activate this? Searched quite a bit through the plugin oven but couldn’t find the answer.
Forum: Themes and Templates
In reply to: Child themes CSSI’m not importing as I don’t want those styles. The only reason I’m using a child theme is for the parents theme’s functionality, not its CSS. Hopefully this is ok.
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] Minify not workingThanks will give it a go!
Forum: Themes and Templates
In reply to: Typekit delay in fonts loadingFOUT.
This worked for me https://blog.typekit.com/2011/05/25/loading-typekit-fonts-asynchronously/
I used Font events asynchronous pattern, worked a charm.
Thank you so much, major headache solved!
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] Minify not workingIt also broke my CSS. Hmm. Deactivated.
Forum: Fixing WordPress
In reply to: Different user logins for different pagesI’m going try this: https://www.ads-software.com/extend/plugins/role-scoper/
Anyone used Role Scooper before?Forum: Themes and Templates
In reply to: Search box in main nav bar onlyI think that I may need to add this:
if( $args->theme_location == 'primary' )
somewhere but can’t get anything to work.
Any tips on getting a search box to appear in the primary menu only?
Thanks
Forum: Themes and Templates
In reply to: Search box in main nav bar onlyThanks… how would you write the code for that? I tried switching things around like this but it didn’t work.
<?php add_filter('wp_nav_menu_items','add_search_box', 10, 2); $items .= '<li class="searchbox">' . $searchform . '</li>'; return $items; function add_search_box($items, $args) { ob_start(); get_search_form(); $searchform = ob_get_contents(); ob_end_clean(); }?>