DavieJ
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Render only text to browseratyq
Could you give a bit more info please?
This is wp-admin side, I need to stop the rendering of all html before my plugin and send only my line of text back.
Forum: Fixing WordPress
In reply to: Make a private wordpress plugin centrally updatedGotcha, thanks Esmi.
Sounds similar to: https://www.ads-software.com/support/topic/plugin-wordpress-seo-by-yoast-site-title-being-appended-to-site-description?replies=7
Take a look at my response there it might resolve your issues.
Hi Bob,
It can be done through the WP editor, or from the FTP (under wp-content/themes/your-theme/index.php).
Check out this thread it should help you:
https://www.ads-software.com/support/topic/new-page-to-display-one-category-main-blog-to-exclude-this-category-how?replies=5His method used there is slightly different but the end result is the same. Hope that helps you achieve your goal. Don’t forget to backup before making any changes.
Hey iwebs,
Go to your network admin dashboard > Sites
Select the site in question. Click the settings tab. Find “Permalink Structure” and edit as you like.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] How do I use the special mail tags?Hi Auxano,
If you go to WP-Admin > Contact
Select the form you wish to edit. Scroll down and on the right side you will find “message body” just put the special tags that you want into that area.
Something like:
From: [your-name] <[your-email]> Subject: [your-subject] Message Body: [your-message] From page: [_post_name]
Hi Bob,
Assuming I’ve understood you correctly. I would usually do this with a little code rather than a plugin. You can find details on how to manage the loop in WordPress:
https://codex.www.ads-software.com/The_Loop#Exclude_Posts_From_Some_CategoryIn scenarios that sound similar to yours I would use something like shown in the above link:
<?php if ( is_home() ) { query_posts($query_string . '&cat=-3'); } ?>
PS. I did read that you’re not a programmer, but this shouldn’t be beyond you. Can be done very easily with your text editor.
Forum: Plugins
In reply to: [Digg Digg] Removing the Digg Digg from home?Hey Marco,
You can’t just disable it in the wp-admin → Digg Digg → Normal Display → 2.2 Buttons are display in… by unticking home?
Try making sure “Force rewrite titles” is ticked in the backend under “Titles & Metas”
If that doesn’t work go into themes header.php and remove the title tag that is there:
<title><?php [...] ?></title>