luckdragon
Forum Replies Created
-
Forum: Hacks
In reply to: WordPress / phpBB theme integrationif you don’t want to use iframes, JQuery/Ajax is always an option also
Forum: Fixing WordPress
In reply to: Post will not show as single posts, they all look like home pageit looks like your permalinks aren’t being read properly, you might want to try turning them off temporarily to see if it’s a permalink problem, or something else.
Forum: Fixing WordPress
In reply to: How to remove blog titles from page titlesyou didn’t show all of your <title> tag, but I’m going to assume that’s part of it.
you can change it to say:
<title> <?php if (!is_single()) { wp_title(); } else { the_title(); } ?> - Beauty products Reviews, Healthy Tips </title>Forum: Fixing WordPress
In reply to: How to remove blog titles from page titlesanswered, then realized all of what you wanted, give me a min to work it out.
Forum: Fixing WordPress
In reply to: Page titles in the content areamodify the template and css, remove the part about the_author_link
Forum: Hacks
In reply to: Manual Redirectremember to mark it as resolved so it can help others also 🙂
Forum: Hacks
In reply to: Comment validation: Data disappears after clicking "back" buttonnot sure, i’ve seen some themes that have caching options built in, but mostly it’s plugins, or if there’s a caching feature compiled into php or apache (not sure about apache)
Forum: Hacks
In reply to: How to a hide plugin from specific usernames?probably my fault in the original post
if (in_array($key,$hidearr) {should be:
if (in_array($key,$hidearr)) {Forum: Hacks
In reply to: Limit Word CountI’m not sure, I’ve seen jqueries that monitor the “comment” field, but not sure about the post one.
Forum: Hacks
In reply to: Limit Word Countthe problem with most plugins like that is it doesn’t strip out the html code when calculating, so
<strong>hi there</strong>
would actually count as 25 characters, and<img src="http://yourdomain.com/wp-content/plugins/whatever/images/filename.jpg" width="100" height="100">would count as 107 characters
Forum: Fixing WordPress
In reply to: Open Target URL Inside My Worpress Siteyou could create a page that has an iframe in it and put the url into that frame
Forum: Hacks
In reply to: How to a hide plugin from specific usernames?if you are having problems, mouse over the “Edit” link, it will say like:
http://whatever.com/wp-admin/plugin-editor.php?file=favlinks/favlinks.phpand
http://whatever.com/wp-admin/plugin-editor.php?file=discography/discography.phpwhatever you see in file= is what you put in the array:
so if you wanted to exclude both of those you’d do:
$hidearr = array('favlinks/favlinks.php','discography/discography.php');Forum: Hacks
In reply to: Manual Redirectyou need the http:// before the urls otherwise they are considered dynamic urls and will get appended to the url of the current site
Forum: Hacks
In reply to: Manual Redirectit looks like you entered the url wrong, i.e.:
http://mobilesite.com/mainsite.com/%%uri%%should be:
http://mainsite.com/%%uri%%and
http://mobilesite.com/mobilesite.com/%%uri%%should be:
http://mobilesite.com/%%uri%%Forum: Hacks
In reply to: Comment validation: Data disappears after clicking "back" buttonare you using a cache plugin on one and not on the other? or have one of the caching options set differently?