pilipili29
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Make] Social Icons Font awesome :only grey boxesI have the same problem, however the icons are displayed on my live site but not on my local version (I’m using MAMP). Do you guys know what could be happening?
Forum: Themes and Templates
In reply to: [Twenty Sixteen] Add a logoI know this reply is a little late, but could work for someone else in the future.
So this solution isn’t just specific to Twenty Sixteen, but I believe it could work for any theme (I’m not an expert in theme development, so I apologize in advance if this doesn’t work some of you, it worked for me):
<!—–Put this code in Function.php—->
function themeslug_theme_customizer( $wp_customize ) {
$wp_customize->add_section( ‘themeslug_logo_section’ , array(
‘title’ => __( ‘Logo’, ‘themeslug’ ),
‘priority’ => 30,
‘description’ => ‘Upload a logo to replace the default site name and description in the header’,
) );
$wp_customize->add_setting( ‘themeslug_logo’ );
$wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, ‘themeslug_logo’, array(
‘label’ => __( ‘Logo’, ‘themeslug’ ),
‘section’ => ‘themeslug_logo_section’,
‘settings’ => ‘themeslug_logo’,
) ) );
}
add_action(‘customize_register’, ‘themeslug_theme_customizer’);<!——And put this code where you want to display the logo (for instance, I put it in header.php before the main menu)——–>
<?php if ( get_theme_mod( ‘themeslug_logo’ ) ) : ?>
<div class=’site-logo’>
<img src='<?php echo esc_url( get_theme_mod( ‘themeslug_logo’ ) ); ?>’ alt='<?php echo esc_attr( get_bloginfo( ‘name’, ‘display’ ) ); ?>’>
</div>
<?php endif; ?>
<!—————End of code————>You’ll have to go to Appearance / Customize to add/change the logo image. Hope this helps! ??
Forum: Plugins
In reply to: [Portfolio Gallery - Photo Gallery] Direct link to related pageHi! I need the same customization. I’ve sent an email to [email protected]. How long does it take you to respond this kind of inquiries? Thanks!
Forum: Fixing WordPress
In reply to: admin dashboard Broken –Hi, I have the same issue. Were you guys able to upload Rev Slider again?
Forum: Localhost Installs
In reply to: How to reinstall WordPress on a localhostThanks! ??
Forum: Themes and Templates
In reply to: [Make] Can I change the appearance of the mobile main menu?Thanks again, Melissa!
(And sorry I wrote this post before asking you this by email!)
Forum: Plugins
In reply to: [Cyclone Slider] Slider stuck on first frameI have the same issue and I haven’t changed anything… Any suggestion?