Vinny Moreira
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Vantage] adding logo to menuFor the most part you can edit your header.php file to include a link with your logo image.
<a href="/"><img src="/wp-content/uploads/path-to-image/logo.png" /></a>
Some themes make it easy to add your logo from wp-admin.
I hope this helps!
Forum: Themes and Templates
In reply to: How to add text widget only in homepageYou may want to take a look at this plugin:
https://www.ads-software.com/plugins/widget-logic/
The functions to target the home page are either is_home() or is_front_page() depending whether you have your front page display your latest posts or a static page under Settings > Reading.
I hope this helps.
Vinny
Forum: Themes and Templates
In reply to: how to remove footer menu from blog pageHow about under Appearance > Menus ? Do you see any menu for the blog or something?
First I’d look at footer.php. If it’s not there, the quickest way to find out what’s spitting out that code is to do a search within all files in a directory. Search the directory containing your theme and/or child theme for ‘id=“footer”‘ That should show you the files that have that line of code.I hope this helps!
Vinny
Forum: Themes and Templates
In reply to: how to remove footer menu from blog pageHave you tried Appearance > Widgets and checked if there are any widgets on a Blog Footer or something? If you can’t figure it out and are in desperate need of hiding that menu, you can always use css to hide it.
#footernav { display: none; }
Forum: Plugins
In reply to: [WooCommerce] Add to Cart button doesn't workIt looks like it’s just a CSS problem. The div with a class of “one_first” is overlapping the div with the shopping cart content. If you add this to your your css it should fix the issue:
.one_first { clear: both }
Cheers!
Forum: Plugins
In reply to: [Multiple Featured Images] Getting the fetured image bygiving post_idHi,
I’m not the plugin author, but is this what you are looking for?
kd_mfi_the_featured_image( $image_id, $post_type, $size, $post_id )
There’s a bunch of options under:
https://www.ads-software.com/plugins/multiple-featured-images/faq/
I hope this helps!
Forum: Themes and Templates
In reply to: [Customizr] Remove white space above the logoGo to: Appearance / Editor, then find and open style.css under Styles.
Search for the class “phone” and add a “float: right;” so it should now look like this:
.phone { margin-top: 30px; text-align: right; font-size: 20px; float: right; }
I hope this helps!
Forum: Themes and Templates
In reply to: [Local Business] How to Highlight Current Category?Add this to your stylesheet. It should do the trick!
li.current-menu-item a { background:url(images/menuhoverbg.png) repeat-x!important; }
Forum: Themes and Templates
In reply to: Drop Down Menu Background is tranparentLook for:
#primary-navigation .flyout li a
and add a background color like this:
#primary-navigation .flyout li a { box-shadow: none; border: none !important; padding: 10px 30px !important; text-transform: none; font-size: 13px; font-size: 1.3rem; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; background: #000; }
Forum: Themes and Templates
In reply to: [StrapVert] Thumbnails of Posts not Showing on Front PageMake sure your functions.php has this line of code:
add_theme_support( 'post-thumbnails' );
Then, wherever your image is supposed to show, add this:
if ( has_post_thumbnail() ) { the_post_thumbnail(); }
Hope that helps!