handig
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: RSS by custom fieldI use WordPress multisite. I did some further research and I’m suspecting that it doesn’t work on multisite.
Does somebody know if it should/shouldn’t work on multisite?
Forum: Fixing WordPress
In reply to: RSS by custom fieldDoesn’t filter the feed results to the custom field. I results in the same feed items as https://www.mywebsite.com/feed/
Forum: Plugins
In reply to: [WordPress Share Buttons Plugin – AddThis] AddThis cookiesForget to mark this as resolved.
Forum: Plugins
In reply to: [WordPress Share Buttons Plugin – AddThis] AddThis cookiesThank you, it works brilliantly.
Hi,
Had the same problem. In my case I solved it by changing the site settings. For example it was childsitename.mymultisite.com which I changed to https://www.childsitename.com.Good luck!
Hi,
I reverted to old version 0.2 and then my spreadsheet showed again.See also link developer website.
I’m not sure if it has to do with the upgrade to WP 3.3.2. I think I checked it then and saw the spreadsheet. I discoverd it after upgrade of PHP from my host.
Forum: Networking WordPress
In reply to: Multisite sitemaps with mapped domainnamesThanks, I tend to believe that it is good to use them.
I noticed that a new website is faster indexed by Google if you provide a sitemap via Google Webmaster tools.
Hi,
Think I found it. The WordPress MU Domain Mapping wasn’t Network activated anymore. I upgraded it and everything seemed to work allright, but somehow the plugin was active, but not network activated. After I network activated it, the BWP Sitemaps plugin gave the correct domain names.Forum: Networking WordPress
In reply to: Multisite sitemaps with mapped domainnamesThanks the sitemap shows with the correct domainnames.
The other SEO functionality is a bit more complex though. Have to study for the right SEO settings.
Hi,
I tried it out and the workaround works, but unfortunately I then have to manually edit each site via network dashboard > Sites> Settings tab > “home” field.Too bad the plugin doesn’t do it itself like Yoast WordPress SEO does.
I like the light approach of the BWP Sitemaps plugin but don’t like the extra work in the workaround for this issue.
Yoast SEO seems a bit heavy (more to customize for other SEO settings) but is the sitemaps get the right domainnames without extra work.
Have to think about it. Or does someone knows a better solution?
Forum: Plugins
In reply to: [Members - Membership & User Role Editor Plugin] [Plugin: Members] WidgetsFound it. edit_theme_options is the one I need.
Forum: Plugins
In reply to: [Blog Copier] [Plugin: Blog Copier] Some files have wrong paths after copyingHi,
I also noticed this problem with the wrong image paths.I’m on WP 3.3.1
Forum: Fixing WordPress
In reply to: Generic link to post itselfHi,
I noticed that if I show it on a category page the permalink shown by the shortcode is the category page url instead of the post url.How can I get the post url when displayed on a category page?
Forum: Fixing WordPress
In reply to: Generic link to post itselfHi,
Thanks but didn’t work. I found this code here.When I use the shortcode without id it returns the permalink from the current post. So I use[permalink] with the following code:
function permalink_thingy($atts) { extract(shortcode_atts(array( 'id' => 1, 'text' => "" // default value if none supplied ), $atts)); if ($text) { $url = get_permalink($id); return "<a href='$url'>$text</a>"; } else { return get_permalink($id); } } add_shortcode('permalink', 'permalink_thingy');
Forum: Fixing WordPress
In reply to: Generic link to post itselfHi,
I’m trying to grasp how it works.I tried this to return only the permalink via a shortcode but get an error:
//[permalink]
function permalink_funct( $atts ){
return get_permalink();
}
add_shortcode( ‘permalink, ‘permalink_func’ );If you could give me a hint.