Robin
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Hide Post Author & Date – specific issue…cheers
Forum: Fixing WordPress
In reply to: How do I change a permalinkDid you permanently deleted your post, a good option is to go to all posts > thrash > delete the previous version permanently
Forum: Fixing WordPress
In reply to: Hide Post Author & Date – specific issue…it will go into your functions.php file (preference would be if you create a child theme and not modify the core files)
i usually do for hide info thing is use css
<?php
if (is_category(‘id’))
{
echo ‘ <style> #author {display:none;} #time {display:none;}
</style>’;
}
?>Forum: Fixing WordPress
In reply to: Hide Post Author & Date – specific issue…you would have to make a conditional logic function something like
if(is_category(id1,id2, id3)
{
hide info
}Forum: Fixing WordPress
In reply to: Up-dating a Woo Themeyou should be able to go to your dashboard, and under woo-theme menu there would be an option to upgrade it directly
but make sure your developer didnt modified any core theme files as it would be lost and overridden when you upgrade
and if you are a paid woothemes customer, i am sure wootheme would put you in a right direction
Forum: Fixing WordPress
In reply to: need to lay a transparent image over my post, PLEASE HELP!!ah sorry was just a good code practice thing :p
you can ignore itbut as such it is good to add an alternate text for google/seo/ search stuff + browser which doesnt load photos
so say if your image was about expired you could just add alt=”expired”Forum: Fixing WordPress
In reply to: need to lay a transparent image over my post, PLEASE HELP!!Where i have added the text add <img src=”” alt=””>
and it will workForum: Themes and Templates
In reply to: Customizing a word press template and add video.you could follow this if you want to code it yourself
http://www.tipsandtricks-hq.com/how-to-add-widgets-to-wordpress-themes-footer-1033Forum: Themes and Templates
In reply to: Customizing a word press template and add video.The good option is to use footer widgets and if your theme doesnt support footer widgets
as esmi said contact your theme vendorsForum: Fixing WordPress
In reply to: Changing title of websiteAfter your wordpress installation you would have got admin username and a password
go to your http://www.datinglds.net/wp-admin (if your installation was done on root)
and login with the details you would be taken to your dashboard
right side, bottom you would see settings > general > (change title / description of your website)Forum: Localhost Installs
In reply to: moving from local to livecheers mate
Forum: Themes and Templates
In reply to: Center image and wrap text around itGood to know it worked out for you
cheersForum: Themes and Templates
In reply to: Installing Atahuapla Theme – HOW?ah so you are on your local machine,
you should have your wordpress > wp-content > themes > (copy your theme folder here) folder in xamppForum: Themes and Templates
In reply to: Installing Atahuapla Theme – HOW?Do you have access to your control panel/ hosting/ ftp ?
Forum: Themes and Templates
In reply to: Installing Atahuapla Theme – HOW?dashboard > appearance > themes
search for the your theme if it is from WordPress repository, you could directly install it that way.