Ramon Ahnert
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: custom css – text not displayed – maybe syntax errorHi @katkafn.
The code $credits ? $credits : ‘Designed by Press Customizr‘ use a ternary operator. The ternary operator works this way (condition) ? (true return value) : (false return value).
So you may remove the ternary operator. Something like that:
return '<div class=”span6 credits”> <p> · © ' . esc_attr( date( ‘Y’ ) ) . ' · Designed by Press Customizr' . $newline_credits . '</p> </div>';Forum: Themes and Templates
In reply to: woocommerce image sizesHi @noiseyboy.
Woocommerce is not a theme but a plugin. The Storefront is a theme.
Did you try set the size in WooCommerce > Settings > Products > Display ?
References:
Using appropriate image dimensions to avoid distortion / pixellationForum: Fixing WordPress
In reply to: above header contact information barHi @hamadesign.
Maybe Header Customizer Lite plugin works.
Forum: Fixing WordPress
In reply to: Question About Migrating HTML site to WordPressHi @mayank29gupta.
Probably not. But you should make a backup of your site for security reasons. You also may try setting up a local server environment for testing.
References:
Installing WordPressForum: Themes and Templates
In reply to: [EasyBlog] Translate “Read More”Hi @vbdeco.
You may translate “Read More” using filter “the_content_more_link”:
function modify_read_more_link() { return '<a class="more-link" href="' . get_permalink() . '">Your Read More Link Text</a>'; } add_filter( 'the_content_more_link', 'modify_read_more_link' );References:
Customizing the Read More
FilterForum: Fixing WordPress
In reply to: Change ‘search’ text colour and font