graphical_force
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Code php wrongly and wp page stop workingThis should help you: http://codex.ww.wp.xz.cn/FTP_Clients
Forum: Fixing WordPress
In reply to: How to hide just tags from the footer in twenty-twelve themeLook for this line in your functions.php file:
$tag_list = get_the_tag_list( '', __( ', ', 'twentytwelve' ) );and just comment it out like this:
//$tag_list = get_the_tag_list( '', __( ', ', 'twentytwelve' ) );Forum: Fixing WordPress
In reply to: How to hide just tags from the footer in twenty-twelve themeSorry that you can’t? Not sure what your sorry about.
Forum: Fixing WordPress
In reply to: pictures with subtitles next to each otherYou could put them in divs and use css.
Example:
<div id="main-container"> <div id="left-image"> <img src="image1.jpg"> </div> <div id="right-image"> <img src="image2.jpg"> </div> </div>`#main-container {
width: 100%;
}
#left-image {
width: 50%;
float: left;
}
#right-image {
width: 50%;
float: right;
}Forum: Fixing WordPress
In reply to: Maintain Post ID between import exportIs it possible that the post id is already being used? Therefore a new id is being created?
Forum: Fixing WordPress
In reply to: Code php wrongly and wp page stop workingJust remove it from the functions.php file. If you were editing the code through the admin, use can do what you need to by using ftp if you have access to the server.
Forum: Fixing WordPress
In reply to: How to hide just tags from the footer in twenty-twelve themeNo what I meant was can you post a link to your site where the tags are showing.
Forum: Fixing WordPress
In reply to: Code php wrongly and wp page stop workingYou do not put shortcodes in the functions.php file. You put them where you want the shortcode to run. Most likely a page or post.
Forum: Fixing WordPress
In reply to: How to have two blogs in two sections on one doamin?What exactly do you want to happen? Do you want to have two different sites or can it be one site? So you want one user to only have access to one section and not the other?
Help us understand exactly what you would like and maybe why.
Forum: Fixing WordPress
In reply to: How to hide just tags from the footer in twenty-twelve themeCan you post a link that shows this?
Forum: Fixing WordPress
In reply to: Unable to restore site after changing URLMaybe this will help: http://codex.ww.wp.xz.cn/Moving_WordPress
Forum: Fixing WordPress
In reply to: Maintain Post ID between import exportI’m not sure exactly what you want to happen. Do you want the post id to change and if not then what id do you want? Meaning that importing is like a formula, when I say the import the post id, there is a relation already setup. This shortcode uses that post id. If I want to change that relationship then how could it be defined?
Could you explain exactly what you would like to happen?
Forum: Fixing WordPress
In reply to: Maintain Post ID between import exportSo you are importing onto an existing site with different post id’s?
Forum: Fixing WordPress
In reply to: Image wrapping- Careta themeOn the home page there, you have two images which are below the text. Can you show us an example of you code that your using to get this effect? Are you using the WYSIWYG to add the text and images? If so, adding images should give you the option to wrap text. Can you show us an example of what you want to do?
Forum: Fixing WordPress
In reply to: Transfer mailchimp email list back to WordPressHave you contacted MailChimp about this to see if they have a solution?