Diegan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Move my wordpress from one hosting to anotherIt worked great, thank you so much!
Forum: Fixing WordPress
In reply to: Move my wordpress from one hosting to anotherThank you, did not know that option. Will try it!!!!
Forum: Plugins
In reply to: A plugin that send e-mail when a comment has a replyThank you! Will give them a try ??
Forum: Plugins
In reply to: How to?: WordPress to facebook GROUPBut how do I put that into a groupd, being the group admin?
Forum: Fixing WordPress
In reply to: Help making “Read more” link to go to beginning of postNOW it works, location, location, location! ??
Forum: Fixing WordPress
In reply to: Help making “Read more” link to go to beginning of postBy the way, I call the more with this:
<div class=”p-con”>
<?php the_content(‘<span class=”moretext”>?Haz click aquí para ver el resto de esta entrada!</span>’); ?>And have an item .moretext on my css, so I can change the font type and color. But I dunno why the code you told me did not work ??
Forum: Fixing WordPress
In reply to: Help making “Read more” link to go to beginning of postThank you, copies it but still dows not work :S
Any clues?
Forum: Themes and Templates
In reply to: Newbie questions: widgets and logosI tried it, you can check how it looks, I believe there’s an image missing there, the one that goes at the back of the letters. Also, the letter did not get the correct formatting.
Maybe I just should change template….
The thing you said about the logo being hard to add, does it mean this theme sucks? I mean, good themes should have an easy option for a logo, or that’s not necessary so?
Forum: Themes and Templates
In reply to: Newbie questions: widgets and logosHehe, thank you! I’ll try that!
Forum: Themes and Templates
In reply to: Newbie questions: widgets and logosThank you again for your answer, I will try to put a logo there.
I paste here my functions.php, if someone with a little knowledge of php can take a look at it and maybe help me with making those widgets work like the default ones, it’ll be appreciated ??
<?php
if ( function_exists(‘register_sidebar’) )
register_sidebar(array(
‘before_widget’ => ‘<div class=”block”>’,
‘after_widget’ => ‘</div>’,
‘before_title’ => ‘<div class=”label”>’,
‘after_title’ => ‘</div>’,
));function mdv_recent_posts($no_posts = 5, $before = ‘
- ‘, $after = ‘
‘, $hide_pass_post = true, $skip_posts = 0, $show_excerpts = false, $include_pages = false) {
global $wpdb;
$time_difference = get_settings(‘gmt_offset’);
$now = gmdate(“Y-m-d H:i:s”,time());
$request = “SELECT ID, post_title, post_excerpt FROM $wpdb->posts WHERE post_status = ‘publish’ “;
if($hide_pass_post) $request .= “AND post_password =” “;
if($include_pages) $request .= “AND (post_type=’post’ OR post_type=’page’) “;
else $request .= “AND post_type=’post’ “;
$request .= “AND post_date_gmt < ‘$now’ ORDER BY post_date DESC LIMIT $skip_posts, $no_posts”;
$posts = $wpdb->get_results($request);
$output = ”;
if($posts) {
foreach ($posts as $post) {
$post_title = stripslashes($post->post_title);
$permalink = get_permalink($post->ID);
$output .= $before . ‘‘ . $post_title . ‘‘;
if($show_excerpts) {
$post_excerpt = stripslashes($post->post_excerpt);
$output.= ‘
‘ . $post_excerpt;
}
$output .= $after;
}
} else {
$output .= $before . “None found” . $after;
}
echo $output;
}
?>Forum: Themes and Templates
In reply to: Newbie questions: widgets and logosHi esmi, thank you for your answer.
Here is an image of how a widget looks when I add it (the default ones dissapear).
https://img128.imageshack.us/img128/7301/screenshot011.png
About the logo…. is it that hard to just put a logo?
Forum: Fixing WordPress
In reply to: Sidebars and widgetsWow, thank you SO much, you are a really valuable member of this community, because you digged my thread from like page 2 and took the time to really look at my template. Cheers mate! ??
I will try to kill that ‘isidebar’, a pity that I don’t know much about css, I read it and it’s like gibberish, html is so much easier! ??
Forum: Fixing WordPress
In reply to: Sidebars and widgetsIt helps a LOT, thank you so much!
So, I assume that the theme I am using is a 3 column, right? And which would be sidebar 1 and which sidebar 2?
For what you say, I guess that, If I really like this theme, but don’t want the second sidebar, my only possible path would be to edit the template and remove it, right? Is it hard? The ‘main’ part (where the posts are) would be automatically wider or should I make it wider too?
Thank you!