dwnfred
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: postsif you want to hide only the date for the posts you will need to edit the single.php (and other files) where is set the PHP code
for ex :
single.php
<div class="post-meta"> <strong><?php _e('Posted on', 'theme1547'); ?> <time datetime="<?php the_time('Y-m-d\TH:i'); ?>"><?php the_time('F j, Y'); ?></time>
`
[Moderator Note: Please post code or markup snippets between backticks or use the code button. As it stands, your posted code may now have been permanently damaged/corrupted by the forum’s parser.]
bold code should be (removed) or better hiding with some /* PHP comments tag
Forum: Fixing WordPress
In reply to: Remove Home buttonare you using “wp_nav_menu” ?
if yes : https://stackoverflow.com/questions/5492495/how-to-remove-home-link-from-wp-nav-menuelse do you have some options for your template (is it your own template or an another template) ?
Forum: Fixing WordPress
In reply to: postsyes by hiding through CSS code, or in the template PHP code
BTW do you have a link with an example, will be easily to resolve the pb…
Forum: Fixing WordPress
In reply to: Change font color in comment boxWhen you login into the admin panel > Appearance > Template > “actual template” and then search for the link where are Relaxa template options
or someting related with options for your template, otherwise you’ll get to change your CSS file
Forum: Fixing WordPress
In reply to: Changing font back to defaultafter the tests you can remove the “!important” textcode in the CSS code
it was just to test if it applies by “forcing” the stylenow you can check every tags and applies with the font you want by adding the right font-family just like we did for the #content div.post p
KR
Forum: Fixing WordPress
In reply to: Changing font back to defaultIn fact, I don’t really get the difference between the 2 fonts, when i see the styles related to the tags in your page :
Droid Sans – for the Site title for ex.
https://s18.postimage.org/7le0b32q1/droid_sans.jpgDroid Serif – for the post’s content
https://s15.postimage.org/u6zfk5gwb/droid_serif.jpgTry with an another font (completly diff from Droid “something) from google font directory to set to your post content to see if it applies or not
Forum: Fixing WordPress
In reply to: Changing font back to defaultIn the css file, after the Single Post comment :
/* Single Post --------------------------------------------- */ #content div.post p{ font-family:'Droid Serif', Times, serif !important; }
Try this to test
Forum: Fixing WordPress
In reply to: Changing font back to defaultCould you please give me an example where (which text for ex.) you want to put “Droid Serif” in your website : https://fashionablylight.com
Forum: Fixing WordPress
In reply to: Featured Image Issuehave you checked that when you change permission it fix at value 755 after disconnexion/reconnexion? If yes you’ll need to contact your web hoster i think
Forum: Fixing WordPress
In reply to: Featured Image IssueUnable to create directory wp-content/uploads/2012/11. Is its parent directory writable by the server?
I think the message is clear : You need to chmod (change permission) on the parent directory (here /uploads/) via FTP
Forum: Fixing WordPress
In reply to: Why i got duplicated image header only in IE browser?I think on IE there is more than ONE problem :
https://s7.postimage.org/k9fbax43f/Capturer.jpg
You will need to check your CSS file and fix some issue with IE browser (conditional comments, for ex.)
Forum: Fixing WordPress
In reply to: Changing font back to defaultThe Theme Features
Clean and minimalistic blog layout.
Responsive layout with CSS3 Media Queries, optimized for different browser sizes and mobile devices such as iPads, iPhones, Android phones etc.
Custom theme option page to easily change the background, text and link colours and choose your own logo image.
Dark theme version (you can switch from the default light design to a dark version in the themes option page).
Custom social links sidebar widget with mini icons (so you can link to your rss feed, Twitter, Facebook, Flickr, Delicious, Xing or LinkedIn page).
Ready for theme translation (right now there is and English and German translation available).
Threaded comments are supported.
CSS-Styles for the Contact form 7 wordpress plugin.
Use of Google Free Fonts Droid Serif and Droid Sans from the Google Font API.i think so, could you check please on the admin panel of the template
Forum: Fixing WordPress
In reply to: Changing font back to defaultOn your admin panel don’t you have some settings for this template to set the font on which part of the website you want ? (example : for all paragraphs you want to use Droid Serif font ect…)
Otherwise you need to change your CSS file , search for “Droid Sans” and change with “Droid Serif”, by default the theme is set with “Droid Sans” in the body tag :
/* General Structure and Styles --------------------------------------------- */ body { font-family:'Droid Sans', arial, sans-serif; color: #4C4C4C; background-color:#fff; }
Forum: Fixing WordPress
In reply to: older posts text changeNormaly it is in the .PO file yes
which template are you using, your own?Forum: Plugins
In reply to: [Widget Logic] [Plugin: Widget Logic] How to get the langage valueOK it is solved :
get_bloginfo('language') == 'en-US' /* For the first menu EN */ get_bloginfo('language') == 'fr-FR' /* For the second menu FR */
It was really simple, I was wrong with puting if PHP tag in the widget logic textfield… (it is already a condition in it)
Thanks, kind regards