dallasm
Forum Replies Created
-
Forum: Plugins
In reply to: [Chikkili- Google Pay India for Woocommerce] Does this work outside IndiaThanks for your quick reply!
Forum: Plugins
In reply to: [Yoast SEO] Schema for medicines, drugs, active ingredientsThanks, I will check it out and try to implement it
Forum: Plugins
In reply to: [Genesis Dambuster] No Container – dam walls busted!Thanks – this is what I’m using – it’s a custom theme by another developer:
https://robertnankervis.com.au/landing-page-template/I’ll check out those links, thanks
Forum: Plugins
In reply to: [Tracking Code Manager] Cannot redeclare class TCM_Tabs errorThanks for that – I’ve followed your instructions and it worked fine.
Thanks Alex
Regards
Dallas
Forum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] YARPP doesn't show any postsOK, I had this problem and I think it was because I’d installed an old version of YARPP – all the relatedness settings were set to off.
So definitely use screen options to check relatedness.
Forum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] get_option() errorHi, Worked for me, thanks!
I’m still working on getting the related posts to display but it fixed the wp-admin crash.Forum: Fixing WordPress
In reply to: Visual Editor Not Working – No Toolbar, Can't Insert MediaThanks obsessedwithfilm, I’ve spent an hour working on this problem with no luck! My server is running varnish and restarting it fixed it for me.
Thanks.I’ve also tried adding define(‘SCRIPT_DEBUG’, true ); define(‘CONCATENATE_SCRIPTS’, false ); into the wp-config.php file as per this thread https://www.ads-software.com/support/topic/visual-editor-is-not-running-in-wordpress-35-for-my-weblog?replies=13 which had helped a lot of people, and of course resetting plugins and themes to default.
Not many people have varnish, so your comment twigged the solution for me
Hope you solve yours!I’m having this problem too.
Its occurring on several different servers.
I’ve noticed multiple people posting about this in Yoast’s blog comments but no answers.
Shame because this is a great feature.I’d love if it also allowed you to click the keywords and add them to tags!
Or have a tag suggestor based on keywords and terms in the text: a bit like a human assisted autotagging tool
Forum: Networking WordPress
In reply to: Adding new usersThanks again, thats great
Forum: Networking WordPress
In reply to: Adding new usersHi Ipstenu, I missed your reply at the time, sorry
Can I add them just to the site though?
Eg. how can a site admin add new users?
I’m having trouble getting this to work.Forum: Fixing WordPress
In reply to: Killed site trying to move from subdomain to rootOK: I eventually sorted it out.
I’d copied the site back to a subfolder instead of a subdomain.
Then I had to delete .htaccess as the old one hadn’t been removed.
Than had to change general settings for the wordpress and site URL and refresh my permalinks.
Alls well that ends well.Forum: Networking WordPress
In reply to: Can't add new sitesHi,
Thanks for your reply, and sorry about the delay.
I’m not sure how to check for the answers to this, and I’ve been waiting on someone to check it with.
I tried to load one of these sites and was advised the database needed repair: I changed wp-config as directed and got this message and told to post it on the forums: I think this means the databases aren’t created but not sureThanks Ipstenu
wp_106_posts: Table 'dallasm_26ae86.wp_106_posts' doesn't exist wp_106_comments: Table 'dallasm_26ae86.wp_106_comments' doesn't exist wp_106_links: Table 'dallasm_26ae86.wp_106_links' doesn't exist wp_106_options: Table 'dallasm_26ae86.wp_106_options' doesn't exist wp_106_postmeta: Table 'dallasm_26ae86.wp_106_postmeta' doesn't exist wp_106_terms: Table 'dallasm_26ae86.wp_106_terms' doesn't exist wp_106_term_taxonomy: Table 'dallasm_26ae86.wp_106_term_taxonomy' doesn't exist wp_106_term_relationships: Table 'dallasm_26ae86.wp_106_term_relationships' doesn't exist wp_106_commentmeta: Table 'dallasm_26ae86.wp_106_commentmeta' doesn't exist
Forum: Networking WordPress
In reply to: SEO for two WordPress on same domainThanks Andrea:
I saw a major drop in rankings of a multisite with the format microniche.niche.com about a month ago which I attributed to this.Google would also present results as:
microniche1.niche.com/
microniche2.niche.com/
See more results from niche.comI’d seen this occasionally before but it became common about a month ago and some of my sites dropped heaps in ranking.
Domain mapping them onto a new domain resulted in immediate improvement to previous levels.I’ve seen Google say they treated subdomains as subfolders anyway before, so I was never sure what to make of it.
Anyway, that article is very useful thanks
DallasForum: Networking WordPress
In reply to: The global "tags" blog creates duplicatesI’ve noticed that too. what’s the best way to do this?
Forum: Networking WordPress
In reply to: The global "tags" blog creates duplicatesUse sitewide tags to aggregate all the posts (and tags to the main blog).
Use general settings to use a page as your front page, and set the posts page at another page.
Don’t have a link to the posts page if you don’t want people to see it.Alternativly, if you want to run a blog on the main site,
create a separate sitewide tags blog. (default is tags).Use the switch to blog and the wordpress tag cloud function https://codex.www.ads-software.com/Function_Reference/wp_tag_cloud to display the tag cloud widget in the sidebar on your main site (code into theme or maybe use html in text widget?)
Something like this should do it (I haven’t tested this and maybe someone more knowledgable can add detail or caveats.
switch_to_blog(BLOG#HERE) <?php if ( function_exists('wp_tag_cloud') ) : ?> <li> <h2>Popular Tags</h2> <ul> <?php wp_tag_cloud('smallest=8&largest=22'); ?> </ul> </li> <?php endif; ?> restore_current_blog()