WP Libra
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: New static front page: error in connecting database problemYou have to change the permalink or URL under the title also from /blog to something else.
/myblog
Or something besides blog. Or you can go rename that folder in your file system if you want to keep blog.
Forum: Fixing WordPress
In reply to: New static front page: error in connecting database problemDo you have an actual folder in your file system that is called /blog/ that might be another instance of wordpress?
Try changing your page name or permalink for the blog page. That will test it.
Forum: Fixing WordPress
In reply to: New static front page: error in connecting database problemWhat did you do to set this up?
Did you just create a page called blog and then go to settings > reading and selected that page as the blog page?
Forum: Fixing WordPress
In reply to: justify excert and underlined link only on hoverTo justify your excerpts
.entry-summary { text-align: justify; }To remove the underline in tag could
.tagcloud a { text-decoration: none; }Forum: Fixing WordPress
In reply to: Clour ChangeHeader Color
#branding { background-color: #CCCCCC; }Body Color
body.custom-background { background-color: #000000; }Forum: Fixing WordPress
In reply to: where to find these files and where to add this codewp-config.php is in your root folder.
/dap/dap-config.php is probablty in wp-content/plugins/dap/dap-config.php
Forum: Fixing WordPress
In reply to: Add AWeber snippet to home page onlyJust add that in header.php somewhere after <body>
Forum: Fixing WordPress
In reply to: Add AWeber snippet to home page onlyWhat code are you putting in? Is it the form to collect emails?
Your theme looks like a paid/preminum theme so I can’t say for sure where it would go since I don’t have access to the files.
But if you can link to your site and tell me where I might be able to guess.
Forum: Fixing WordPress
In reply to: Add AWeber snippet to home page onlyI would just put a condition statement then your code.
If your site is set to show a page on the homepage then use.
<?php if(is_front_page() ) { ?> //AWEBER CODE <?php } ?>If your site is set to show latest blog post on homepage then use.
<?php if(is_home() ) { ?> //AWEBER CODE <?php } ?>Forum: Fixing WordPress
In reply to: WordPress Editor Deleting UnderlineSo you’re good? 🙂
Forum: Fixing WordPress
In reply to: WordPress Editor Deleting UnderlineAlso I would be curious to see if you swapped to HTML mode and added this in.
Welcome to WordPress. <span style="text-decoration: underline;">This is your first post.</span> Edit or delete it, then start blogging!Forum: Fixing WordPress
In reply to: rss widget helpGo to wp-admin > plugins > add new
Then search for the name “socialize”. Then click install > activate.
You can do it all within your admin panel.
Forum: Fixing WordPress
In reply to: WordPress Editor Deleting UnderlineAre you adding it to the whole text? Can you just pick 1 word?
Also are you using visual or html? If you do visual and swap to html do you see the coded added or removed?
Forum: Fixing WordPress
In reply to: rss widget helpFor you it would probably be better to install a plugin plugin and then put that widget in the location and set it up.
This way you don’t need to code anything.
Forum: Fixing WordPress
In reply to: WYSIWYGDid you try different text or the same text? Wondering because something could be wrong with the formatting you are pasting in.
Also are you pasting in HTML or VISUAL mode?