ericaski
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Required fields errors not appearing on single product pageAnyone? I have surmised that the theme authors (who included WooCommerce in their theme…Elated) did not expect to have to have the Required Fields Error Message on a single product page. So they didn’t include the hook. Since this is a Gift Card, the single product page requires fields to be completed. I have tried for days to figure out which hook I need and where to add it to no avail. Plugin and Theme authors both point fingers at each other, but ultimately is compatibility. Any help would be greatly appreciated.
Forum: Plugins
In reply to: [WooCommerce] Required fields errors not appearing on single product pageThank you for the quick investigation. Would the generation error be in the php hook then? I am not very skilled at that type of coding, but since the error messages work on the checkout page, I am posing to anyone out there with those skills that perhaps copying some action or hook from the checkout page to the single product page would resolve the issue?
Forum: Plugins
In reply to: [WPFront Notification Bar] Bar not shown with “Landing Only” optionDid you ever get this resolved? I just created my first notification bar and the only way it will work is if I choose “All pages”.
Forum: Plugins
In reply to: [Popups - WordPress Popup] Pop not sizing correctly in FirefoxPlease disregard. I was able to figure it out. Was the properties of the iframe that I had for the content of the popup.
Forum: Developing with WordPress
In reply to: Add Widget to Home PageCan anyone suggest to me how to resolve an issue if I can’t get support from the people who sold me the theme and, because I purchased a theme, I can’t get support on this forum?
Forum: Developing with WordPress
In reply to: Add Widget to Home PageCan you give any advice on how to get it out of the Genesis “cruft”?
The theme support is nonexistent. I’ve been trying to resolve this with no help for 3 days straight. I am not a coder AT ALL
Forum: Developing with WordPress
In reply to: Add Widget to Home PageIt’s the slider that is in the new widget. On this development site, I have removed the slider that came with the theme because it is not responsive. I then added the new widget area and used a slider plugin (MetaSlider). However, the slider is not 100% because the widget isn’t. I don’t know how to get the widget out of the tag it’s in. Here is how I added it in the home.php. I named it “genesislider”.
<?php get_header(); do_action( 'genesis_home' ); if( is_active_sidebar('genesisslider') ) : ?> <div id="genesis-slider-wrap"> <div class="genesis-slider"> <?php dynamic_sidebar('genesisslider'); ?> </div> <?php endif; ?> <div class="home-top"> <div class="widget-area"> <div class="widget"> <?php dynamic_sidebar('hometop'); ?> </div> </div> </div> <div id="home-middle-wrap"> <?php if( is_active_sidebar('homemiddle-1') || is_active_sidebar('homemiddle-2')) : ?> <div class="home-middle-1 widget-area"> <?php dynamic_sidebar('homemiddle-1'); ?> </div> <div class="home-middle-2 widget-area"> <?php dynamic_sidebar('homemiddle-2'); ?> </div> <?php endif; ?> </div> <?php zp_latest_portfolio(); get_footer(); ?>
- This reply was modified 7 years, 3 months ago by Steven Stern (sterndata). Reason: put code in backticks
Forum: Developing with WordPress
In reply to: Add Widget to Home PageThank you for letting me know Steve. It is https://throckmortons.biz.
Regarding the adding of a widget, I did the steps you provided on my development server (https://thvcreative.com) but can’t get it to be 100% wide.
Forum: Fixing WordPress
In reply to: Full width genesis responsive sliderThank you.
Forum: Developing with WordPress
In reply to: Add Widget to Home Pagefigured this out
Forum: Developing with WordPress
In reply to: Page ID for custom index pageNevermind, I’ve discovered the Home page is home.php file. It has no page ID.
Forum: Fixing WordPress
In reply to: List with bullets not mobile responsiveNo, that didn’t work. Any other suggestions?
Forum: Fixing WordPress
In reply to: Menu positionI was able to fix the padding. Thank you.
Forum: Fixing WordPress
In reply to: Menu positionThe place I purchased the theme from has not been responsive regarding support issues. I have found much more success on this forum. The spacing issue I am having is standard css and I know someone with more knowledge than I can help me fix it easily.
Forum: Fixing WordPress
In reply to: Sub menu position editingGot it.
Just edited the top margin to -27px and added “important!” to force it to propegate the code.
.genesis-nav-menu .sub-menu .sub-menu {
margin: -27px 0 0 100px !important;
}