jadedstudio
Forum Replies Created
-
Forum: Plugins
In reply to: Future posts in single view – help!Okay found out WordPress doesn’t show future single.php posts by default. It requires a small hack of query.php in wp-includes to enable the posts to display.
If any one needs the hack post below!!
Forum: Fixing WordPress
In reply to: display Category listsCan you not go a level deeper like this
-parent-category
–colour
—black
—white
–author
—author1
—author2etc…
Never tried this before, but this is how I would approach it to begin with
Forum: Plugins
In reply to: Future posts in single view – help!Hi, I’m having the exact same problem, how did you solve this (the site you gave seems to be working now).
Any help would be much appreciated…
Forum: Plugins
In reply to: Linking postsI have found a solution to this and posted it on my blog. You can find out how I achieved this here: https://www.jadedstudio.com/tutorials/linking-wordpress-posts-using-custom-fields
Hope this helps anyone hoping to achieve the same!
Forum: Plugins
In reply to: [Plugin: Twitter Tools] any way to delete “from twitter tools”?The reason you cannot change this is because it is referenced from within Twitter itself. The line
‘source’ => ‘twittertools’
is the Twitter account which is used to display the information. You could change this to your Twitter username, but unless you have filled out the ‘request source’ form on Twitter, it will simply display ‘from web’.
You can read more about this here: https://tinyurl.com/d4mygq <- You might need to open this in a new tab!!
And it sounds like they don’t want backlinks to blogs, marketing materials etc. (haven’t they heard of rel=”nofollow”?) so if you want your web address to appear in there don’t even bother.
Forum: Plugins
In reply to: If (this page has subpages) thenI am having some real problems with this. I can display sub-pages, but what I am trying to do is this:
don’t display parent pages
if page is sub-page but also has child pages, don’t display anything
if page is sub-page but has no children, display it’s siblingsUltimately what I’m trying to achieve is to only show a pages siblings if it is the bottom level page.
IE
Home > about > about me
Home > about > about my companyHome should display no links
Home > about should show no linksHome > about > about me should show about me & about my company
Home > about > about my company should show about me & about my companyAny help would be greatly appreciated!
Forum: Fixing WordPress
In reply to: THE BIG MOVE – 6 Months of work ready to pay off!I would personally leave everything where it is, and add a .htaccess file to your root. I have done this before, and it works rather well. Plus, if you want to take your wordpress site away for any reason, and revert back to your original site, you simply need to remove the .htaccess file.
Try using this .htaccess file in your root:
RewriteEngine On RewriteBase / RewriteCond %{REQUEST_URI} !^/wordpress/ RewriteCond %{HTTP_HOST} ^(www\.)?pinkfloydonline\.com RewriteRule ^(.*)$ wordpress/$1 [L]
Hope this helps!
Forum: Fixing WordPress
In reply to: Splitting category links into two even columnsIs there anybody who might be able to help??
Forum: Fixing WordPress
In reply to: Splitting category links into two even columnsAnyone? This is probably really simple, I just can’t figure it out! Any help is greatly appreciated!
Forum: Fixing WordPress
In reply to: Some script problem on my blog https://www.eRealMedia.comIt appears your page is trying to load the IE PNG Fix. Is the following file located on your server, if not it may be that the site owner for upixels.com has restricted access to this file from outside servers.
File: https://upixels.com/wp-themes/wp-content/themes/1/iepngfix.htc
What I would suggest is to type the address of the file above into your browser & save the file to your local hard drive. Then put the file onto your server into your theme directory. Once the file is stored locally on your server, you will need to change the address. I would assume this is in your themes header.php file.
Open your themes header.php file, look for the following code:
/* if (document.all && document.styleSheets && document.styleSheets[0] && document.styleSheets[0].addRule) { document.styleSheets[0].addRule('*', 'behavior: url(https://upixels.com/wp-themes/wp-content/themes/1/iepngfix.htc)'); } */
replace this line:
document.styleSheets[0].addRule('*', 'behavior: url(https://upixels.com/wp-themes/wp-content/themes/1/iepngfix.htc)');
with this:
document.styleSheets[0].addRule('*', 'behavior: url(https://erealmedia.com/WP25/wp-content/themes/adspress/iepngfix.htc)');
This is assuming your theme is called ‘adspress’, and the theme folder is located at: https://erealmedia.com/WP25/wp-content/themes/adspress/ and this is the location where you stored your copy of ‘iepngfix.htc’
Hope this helps!