Forum Replies Created
-
AuthorPosts
-
Yes I am. Not sure what happened but it works now thank you :)
This reply has been marked as private.April 29, 2022 at 7:41 pm in reply to: Page not loading for edit into advanced or default editor #1349985Thank you Nikko. I host with Godaddy an noticed a couple of other posts on 04/28/22 that sounded like the same issue. I took the above steps to increase WP mem and PHP mem during the issue that had no immediate effect. As of today 04/29 I can update the pages I was having issues with. Possible Goddady DB server issues I can only assume. I experienced this issue over a 24hr period very randomly. When a page would lock on update the whole domain and sub domains would go offline of a brief period of time. All seems working ATM. The page I was dealing with was very simple standard html content with the Enfold wrap.
Bobtown Brewery
220 W Main St. Roberts WI. 54023
Tel: (715) 338-1046
Web: bobtownbrewhouse.menufy.com
Availability: Dine In<hr />
Yoerg Brewing
378 Maria Ave St Paul MN. 55106
Tel: (651) 330-2076
Web: http://www.yoergbeer.com
Availability: Dine In
<hr />
Roma Restaurant – Brewery – Market
310 Stillwater Rd Willernie MN. 55090
Tel: (651) 653-4733
Web: http://www.romarestaurantbrewery.com
Availability: Take-n-Bake
<hr />
American Legion Post 98
328 Broadway Ave, St Paul Park, MN 55071
Tel: (651) 459-8016
Web: richarddinglepost98.com
Availability: Dine In
<hr />VFW Post 806 Club Princeton MN
133 Rum River Dr. North Princeton MN. 55371
Tel: (763) 389-9959
Web: vfw-post-806-princeton-minnesota.business.site
Availability: Dine In<hr />
Octopus College Hill
2205 College Street Cedar Falls, IA 50613
Tel: (319) 242-7789
Web: http://www.octopuscollegehill.com
Availability: Dine In<hr />
Brothers Market Denver
1022 Skylar St, Denver, IA 50622
Tel: (319) 406-0004
Web: shopbrothersmarket.com
Availability: Take-n-Bake<hr />
QC Pizza Mahtomedi
3150 Century Ave N Mahtomedi MN. 55115
Tel: (651)777-1200
Web: http://www.qc.pizza
Availability: Take-n-Bake<hr />
QC Pizza South Minneapolis
5501 34th Avenue S Minneapolis MN. 55417
Tel: (612)259-7132
Web: http://www.qc.pizza
Availability: Take-n-Bake<hr />
GoldBelly Nationwide Shipping
Shipping: UPS Next Day Air Shipping
Availability: 48 contiguous states
Web: https://www.goldbelly.com/qc-pizza<hr />
Thank you everyone for your helpful input on my issue. With your help I have things working as close as possible to the way I wanted them to with implementing a simple “sticky full-page sub-menu”.
Mike,
I am using the current ver. of chrome and Firefox on all devices. Some tests were conducted on Windows in browse > Inspect switching between portrait and landscape veiwports. I did no incognito mode tests. I suspect as Guenni007 suggestion ” there is only missing a better media-query setting. It does not work between 620px and 990px ” is correct.Thank you
I was testing on an Android tablet, Android Phone, and Chrome in windows using the inspector in mobile virtualization for different device settings.
I will try some of the suggested additions to my current CSS.Thank You
I have had some success with attempting to maintain the fullwidth submenu element to the #top of the page mobile res. I am still struggling to get it to work as I need it to. I am not an ace with css; never have been. The solution I have attempted still breaks and the full width submenu scrolls on by as certain screen resolution points in portrait mobile view will not work. I have a short text based submenu so I am not using the burger icon on the sub. Just a text based full width submenu with ID=”target_name” links to navigate the page categories (long page mobile/ we have a lot of specialty pizza choices.) I just would like it to stick to the very top of the view as the user scrolls down so that they may navigate product choices as it does in desktop mode.
- This reply was modified 2 years, 7 months ago by dschneekloth.
Guenni Thank you for responding! I did glance over your thread and understood most of it. I am not dealing with a transparent header so that bit of it through me off. Nor do I care if the main header is sticky I just need the submenu to stay sticky for navigational ease. I will have another go and read through your thread more closely as well as examine the files mentioned in the post and see what I can figure out. I have been able to partially accomplish what I am trying to do just not fully able to get it working cross browser. The two pages I mentioned I will post below.
page 1 – https://qc.pizza/menu/
page 2 – https://qc.pizza/qc-pizza-minneapolis-menu/
I do not use a child theme on this site. Most of my CSS is in Quick CSS. Some directly to the Enfold CSS files. PHP I edit directly and file merge on updates.Thank you again Guenni
I will post my progressThank you for the support response Mike
I was able to find a plug-in that allows what I requested. To put a cart icon and cart contents into my sites main navigation menu. The plugin woocommerce-menu-bar-cart.2.10.0 works for what I wanted. The ability to add the cart menu to main navigation with woocommerce-menu-bar-cart.2.10.0 works but could be a better implementation within the Enfold theme. I removed the search icon from the menu and my logo with mobile nav is not disrupted. That works fine for the project I am working on.Thank You again
Also when I do set to “always display attached to menu my mobile navigation get centered over the logo which is not gonna work ><
March 1, 2021 at 5:24 pm in reply to: Add fields to products display on shop page WooCommerce #1284484Yes this can be closed
thanksFebruary 28, 2021 at 6:41 pm in reply to: Add fields to products display on shop page WooCommerce #1284280Victoria thank you for the reply! I will be checking it out so I can better refine my fix.
I managed to figure it out mean time its not pretty but works for what I need. I will share the code functions below for anyone else that may run into this./* Add brand and size to shop page working */
add_action(‘woocommerce_after_shop_loop_item_title’, ‘dstm_display_product_category’, 5);
function dstm_display_product_category()
{
global $product;
$brand = $product->get_attribute(‘brand’);
if (empty($brand)) {
} else {
if(isset($brand)){
echo ‘Brand: ‘ . $brand . ‘<br />’;
}
}
}add_action(‘woocommerce_after_shop_loop_item_title’, ‘cstm_display_product_category’, 5);
function cstm_display_product_category()
{
global $product;
$size = $product->get_attribute(‘size’);
if (empty($size)) {
} else {if(isset($size)){
echo ‘Size: ‘ . $size . ‘<br />’;
}
}
}
require_once( ‘functions-enfold.php’);- This reply was modified 3 years, 8 months ago by dschneekloth.
December 8, 2019 at 8:35 pm in reply to: Single page main menu navigation elements indicator #1163884December 8, 2019 at 8:17 pm in reply to: Single page main menu navigation elements indicator #1163875Works perfectly as needed that you very much Victoria and Rikard.
The page ID is declared to make it a unique style for that page only? Brilliant, I have yet to try the code but i am sure this will work looking at it thank you.
This reply has been marked as private.June 25, 2019 at 5:01 pm in reply to: Remove the line at the end of the title h1, h2, h3, … #1113294Alessandro it looks like you are using the default “Special Heading” to generate your H1,H2, and H3 with a line style to the right. Delv into the the ‘Edit Element’ of the “Special Heading” block then change the Heading Style(Select a heading style) to modern left. right, or center. Or instead use a text block and style your element per your own needs; aka
<h1> This</h1>
<p> This content under h1</p>
<h2>That</h2>
<p> That Content under H2</p>
<h3>The Other</h3>
<p> The Other Content under H3</p>My Best
- This reply was modified 5 years, 4 months ago by dschneekloth.
This reply has been marked as private.I am lurking about with my own issues here but would suggest loading a twenty something (default WordPress themes) Then falling back to a current backup version of the enfold theme folder in wp-content/themes. Rename the current Enfold theme (on server) to EnfoldBack or whatever. Then upload the backup or current version 4.5.7 enfold to the themes folder via FTP or Cpanel. The site data should still be intact in the DB.
Best Luck
This reply has been marked as private.Current PHP version: 7.2
Go-daddy shared hosting default extensionsWas able to log this error today
[19-Jun-2019 19:17:44 UTC] PHP Notice: Undefined index: upload_folder in /home/lq3fmc2v6ptp/public_html/wp-content/themes/enfold457/framework/php/class-framework-widgets.php on line 3419$ref_dirs = array();
foreach( $this->cache[‘instances’] as $key => $instance_info )
{
3419 $ref_dirs[] = $instance_info[‘upload_folder’];
}- This reply was modified 5 years, 4 months ago by dschneekloth.
I too am experiencing a similar problem with certain content ver 4.57 wp 5.22. My site whole actually goes down for a min or two during these events that happen while editing content of a page in the admin.
Call text or image or button
tel:+16517771200 <-in the href box of button is the important part.Good luck
-
AuthorPosts