Mi iomete modifis miajn paĝajn aranĝojn hodiaŭ. Mi legis plu Blogo de John Chow kaj sur La blogo de Problogger ke poziciigi vian reklamon en la korpon de afiŝo povas rezultigi draman pliiĝon de enspezoj. Dekano laboras ankaŭ pri sia.
En la retejo de Darren, li skribas, ke temas simple pri la okula movado de la legantoj. Kiam la standardo estas ĉe la supro de la paĝo, la leganto transsaltas ĝin sen fokuso. Tamen, kiam la reklamo estas dekstre de la enhavo, la leganto efektive trarigardos ĝin.
Vi rimarkos, ke mi ankoraŭ provas teni mian ĉefpaĝon pura - metante reklamojn ekster la blogaĵojn. Mi certas, ke ŝanĝi tion kaj fari ilin pli trudemaj povus enspezigi min; tamen mi ĉiam batalis kontraŭ tio, ĉar ĝi vere influus la legantojn, kiujn mi plej zorgas - tiujn, kiuj ĉiutage vizitas mian ĉefpaĝon.
Unu el la problemoj kun meti ĉi tiun reklamon supre dekstre estis, ke ĉi tie mi ofte metas bildon por estetikaj celoj kaj vesti mian fluon kaj diferencigi ĝin de aliaj fluoj. Mi kutime alternas pecon de bildarto dekstre aŭ maldekstre en la afiŝo per:
Bildo Maldekstre:
Bildo Dekstre:
Noto: Iuj homoj ŝatas uzi stilojn por ĉi tio, sed la vicigo ne funkcias en via fluo CSS.
Ĝisdatigante ĉiun afiŝon per Serĉo kaj Anstataŭigo:
Facile modifi iam ajn unu bildon en ĉiu afiŝo por certigi, ke ĉiuj miaj bildoj estas pravigitaj, povas esti farata sufiĉe facile per Ĝisdatiga konsulto en PHPMyAdmin por MySQL:
ĝisdatigi tabulnomon aron tabelkampo = anstataŭigi (tabulkampo, 'anstataŭigi_ tion', 'kun_ĉi');
Specifa al WordPress:
ĝisdatigi `wp_posts` set` post_content` = replace (`post_content`, 'replace_that', 'with_this');
Por korekti mian problemon, mi skribis la demandon por anstataŭigi "bildo = 'dekstra'" per "bildo = 'maldekstra'".
NOTO: Estu tute certa rezervi viajn datumojn antaŭ ol fari ĉi tiun ĝisdatigon !!!
Looks good, Doug. I think the flow of your entries are maintained nicely.
Thanks Slaptijack! I modified my sub-heading size today and worked on some spacing in my CSS. Tweakin, tweakin, tweakin!
Thanks for providing further information on this topic. I’ve seen ads left or right justified before on other web sites so it does seem a popular place. Your ads flow nicely on the right of the post.
I may switch to right justifying my ads too in the near future. It would be interesting to see if any further revenue is generated as a result.
I’m going to definitely track them. Overall impressions are down a little right now, so revenue is also lagging. I’m going to give it a few weeks to see! I’ll be sure to report on it.
Do you get anything with the banner ads on your index page, Doug? I didn’t do well with them.
In general, the in-post ads (180 and 250 wide) and the ads after a post (336 wide) have gotten the most attention.
Interesting, Rick. I actually messed up and haven’t been tracking the ads by page up until about a week ago. So far, no clicks on the main index page! It’s something I’m going to keep my eye on.
Dankon!
Out of interest. Did you modify your template files to display the ads in your posts, or are you using a plugin to manage ad position.
Saluton Dekano,
I use a combination. I have the PostPost plugin I wrote… but it still doesn’t do what I really need. Perhaps a release or two in the future?
The rest I simply edit in my theme.
Doug
have a problem to update secondds with “right” join in mysql
UPDATE ivr_data SET RIGHT( TIME, 2 ) = ’00’ WHERE RIGHT( TIME, 2 ) != ’00’;
Hey Doug. Just used your instructions to update my email address in my WP DB. Worked like a charm. Thanks.
BTW, came across this post in Google, searching “using mysql search replace query.” Came up 3rd.
Woohoo! 3rd is good! My site seems to really have gotten some great placement in the Search Engines over the last year. Ironically, I rank above many Search Engine Blogs. 🙂
this seemed to work better for my mysql…..
UPDATE wp_posts SET post_content = replace( post_content, ‘replace this’, ‘with that’ ) ;
This worked for me
UPDATE wp_posts SET post_content = REPLACE( post_content, ‘www.alznews.net’, ‘www.alzdigest.com’ ) ;
possibly the ‘replace’ needed to be capitalized
Thank you, I'm looking for this query
Thanks! Mine insisted on using " not ' around the find and replace text. I was using it to move all the SQL data from one web site to another. It saved a lot of work!
I recently wanted to replace a string within MySQL on the fly, but the field could contain 2 items. So I wrapped a REPLACE() within a REPLACE(), such as:
REPLACE(REPLACE(field_name, “what we are looking for”, “replace first instance”), “something else we are looking for”, “replace second instance”)
This is the syntax I used to detect a boolean value:
REPLACE(REPLACE(field, 1, “Yes”), 0, “No”)
Esperas ke tio helpas!