Col_Blimp
Forum Replies Created
-
Forum: Plugins
In reply to: [Inline Image Upload for BBPress] Image storage locationHi there, thanks for this, getting an error though:
PHP Warning: Missing argument 1 for hm_bbpuip_get_storage_dir(), called in /var/www/mysite.com/wp-content/plugins/image-upload-for-bbpress-pro/bbp-image-upload-pro.php on line 308 and defined in /var/www/mysite.com/wp-content/plugins/image-upload-for-bbpress-pro/bbp-image-upload-pro.php on line 278
I assume that’s why clicking the camera button to upload a file does nothing?
Forum: Plugins
In reply to: [WordPress Share Buttons Plugin – AddThis] SideBar obscuring menuThank you.
I mean the ‘Sharing Sidebar’ widget not the ‘Sharing Buttons Above/Below Content’ widget. There is an option added to every page ‘Share Buttons By AddThis’ and I took that to mean that no AddThis Buttons will appear on that page.
Please make it so that the ‘Sharing Sidebar’ can be disabled on pages as one really does not want it on checkout pages and user account pages.
Forum: Plugins
In reply to: [Inline Image Upload for BBPress] Image storage locationYes, images are served from a subdomain for performance reasons.
If you delete the registration page you’ll get a 404 or redirect registration to home, either of these is better than adding a random page name in the hope no one looks up your sitemap.
Not in the latest version but I never bothered with the support ticket. I added this instead to my functions.php:
add_action('init','custom_login'); function custom_login(){ global $pagenow; if( 'wp-login.php' == $pagenow ) { wp_redirect('https://mysite.com/login/'); exit(); } }
Forum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] Rebuild sitemap.xmlHi there, sitemap in the latest version is as expected, cheers.
Forum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] BBPress Topic Not ShowingHi there, the topics still dont show with the latest version, commenting out: add_filter( ‘pre_get_posts’, array( $this, ‘search_filter’ ), 999, 1 ); resolves the issue.
Forum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] Rebuild sitemap.xmlHi there, get the dreaded white page of death with the alpha, have all the php errors disabled but I can set them back up if you need some debugging info.
Forum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] Rebuild sitemap.xmlThanks, not using any caching plugins as it messed with the membership system I’m using so I only do browser caching of images.
I know its negligible but in this instance if a sitemap is found (with only 2 pages and a blog post) does that mean the search engine wont bother crawling the rest of the site?
Forum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] BBPressThanks Sybre, the hook makes things as you would expect.
Forum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] BBPressLooking at source output then og:title is set correctly but <title></title> is being used instead and the title has the │ appended but no site name.
og:description is using it’s default even though this has been changed in the page settings.
Forum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] Rebuild sitemap.xmlHi there, well I have only a custom 404 page set to noindex and I’m using ‘Total’ theme but have nothing for generating content other than the WordPress editor.
I’ve just went through all pages on the site and edited the ‘Custom Page Title’ in your SEO settings then went to Settings->Permalinks then resaved but the xml remains the same.
Here what the xml looks like:
<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="https://www.sitemaps.org/schemas/sitemap/0.9"> <!-- Sitemap is generated on 2015-11-22 11:19:22 --> <url> <loc>https://mysite.com/</loc> <lastmod>2015-11-22</lastmod> <priority>1.0</priority> </url> <url> <loc>https://mysite.com/pageid:7/</loc> <lastmod>2015-11-22</lastmod> <priority>0.9</priority> </url> <url> <loc>https://mysite.com/postid:48/</loc> <lastmod>2015-11-22</lastmod> <priority>0.9</priority> </url> </urlset> <!-- Sitemap is served from cache -->
so it has updated but for whatever reason its only listing pages it thinks were edited today but the three pages listed as edited today were not actually edited today other than the SEO edits.
Closing the forum seems a bit odd given its unlikely that only one person is going to have the same problem and a solution shared helps everyone but a support ticket helps them track issues better, I had reason to create a ticket a few days ago and got a speedy reply so given that and the fact the plugin author has taken the time to incorporate the plugin as a company then I’m going on to purchase the bundle.
Forum: Plugins
In reply to: [Theme My Login] Widget TitleThanks for the reply Jeff, you know I’ve looked through all the code and cant for the life of me see where to change this so I assume its the case that the widget title is handled in WordPress itself and if so could you tell me where? Also please consider implementing a change title feature as you could have say ‘Community Options’ so it would be that for the logging our/profile/newsletter options when logged in.