MAzCastro
Forum Replies Created
-
Forum: Themes and Templates
In reply to: PHP if elseif problemPerhaps what ws5f3dj7 meant was ′&&′ and not ′||′
MAC ??
Forum: Themes and Templates
In reply to: Strange title tagHi Jared
In a first aproach the title can either be inserted via the WP admin panel or hard-coded in you index.php theme not the root index.php (and others if you have templates) – have you checked those?
But without the source it’s only a guess.
MAC ??
Edited AFTER: I wrote the above this morning, but forgott to publish it, only clicked to postd now, and now I see its outdated, please igore-it.
Forum: Themes and Templates
In reply to: Treating IE6 users as they deserve@t31os_ > perhaps you didn’t pay atention to the above posts:
“(…) I don’t know of a plugin that would change the words in the body-text (…)”
MAC ??
Forum: Themes and Templates
In reply to: Treating IE6 users as they deservePaste this chunk of code in a .txt, change the strings to fit your needs, name the file “foo2bar.php” place it in your plugins directory and have fun!
<?php /* Plugin Name: foo 2 bar Plugin URI: Description: Search a string in the content and replaces it by another Author: MAC (adapted a long time ago from someone I don't recall) Version: 1 Author URL: [email protected] */ function foo2bar($text){ $text = str_replace('findThisWord', 'ReplaceItWithThis', $text); return $text; } add_filter('the_content', 'foo2bar'); add_filter('the_title', 'foo2bar'); ?>
MAC ??
Forum: Themes and Templates
In reply to: IE and Z-Index@emg now a silly question, im really not in to WP bureaucracy:
– Why do you have a link in your username and bendrucker or myself don’t?
MAc ??
Forum: Themes and Templates
In reply to: font-size not overriding in the CSSOK, by no means i wish to Judge you ??
aggiehavoc your CSS is a mess! ?? Probably not your fault, but the theme designer should read a bit more about CSS before spreading murky code…
For instance, in your titles you aren’t specifying the units for the font size value.
in line 53 of you style.css on the.titleText a {};
selector try to use
font-size:28px;
instead.In this exact moment I don’t have the time to look deeper, but I will do it ASAP.
Meanwhile you refer that you’re using the same CSS you used before. It seems to me that the original CSS was not been rendered in a “Strict server”, like Apache (e.g.) and now it is. So now you have to be careful using case sensitive statements and overall a less permissive markup then before.
Forum: Themes and Templates
In reply to: Menu changes per pageWayde, Before i wrote my previous post, I tried that in your markup and it worked fine.
MAC ??
Forum: Themes and Templates
In reply to: IE and Z-IndexIt’s your call. I rather try to influence users to upgrade then willingly cope with something that is not correct. Just take the giants as an example, YouTube now is abandoning IE6 support. They’re moving on.
-> EMG You can do it but PLEASE don’t call it “code decently”! decent code does not render well in IE6 ??
MAC ??
Forum: Fixing WordPress
In reply to: HELP! My WordPress site has been hackedAh so you were attacked by nice hackers!
They probably just changed the index.php of you WP. Re-upload a new index.php or, as you have your ands in it, upgrade to the most recent version. This should take care of it.
Also change the FTP/server login data.
Please let me know the result.
MAC ??
Forum: Themes and Templates
In reply to: font-size not overriding in the CSSIf you have it online I can check your markup. (CSS/HTML) I only need the post-processed stuff.
I don’t understand the full scope of your question. Thing is I really don’t know what your skills are, so this means the problem can be very simple or very complicated, depending on that ??
So to avoid me asking silly questions like, are you targeting the correct classes or sibling selectors, I’d rather take a look at it first ??
MAC
Forum: Themes and Templates
In reply to: Excluding pages in main nav & hiding the title?Sorry, my mistake, i was not paying attention:
Use:
<?php wp_list_pages('exclude=17,38'.'title_li=' ); ?>
Or visit:
https://codex.www.ads-software.com/Template_Tags/wp_list_pages
For further info.
MAC ??
Forum: Themes and Templates
In reply to: Excluding pages in main nav & hiding the title?Can you post the site URL?
I don’t understand the scope of the question.
are we talking raw PHP syntax, or is it something in the WP does not function correctly?MAC ??
Forum: Fixing WordPress
In reply to: HELP! My WordPress site has been hackedOK
I’m assuming that they changed you pass, right?
If so, do you have any other user account to your site? even a non-administrator, but someone you can reach.
MAC
Forum: Themes and Templates
In reply to: Excluding pages in main nav & hiding the title?– Why don’t you simply edit the title on your widgets panel?
– Why don’t you fill the “Exclude” box with the ids of the pages you wish to hide (on the menu), in the same widget panel?
MAC ??
Forum: Themes and Templates
In reply to: Post Thumbnail WidthsAre you aiming to the right class?
Do you know you can specify your thumbs size in the insert-image dialog box?
MAC