Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle

Search Results for 'page '

Home / Forums / Search / Search Results for 'page '

Viewing 20 results - 51,561 through 51,580 (of 53,646 total)
  • Author
    Search Results
  • In forum: Virtue Theme
    #11017

    Hi Ben

    I am having trouble with the checkout page. The fields are to far apart I looked other peoples sites and they are just right. Here is a link to a checkout page.

    Thanks for the help. I have spent days on this.


    maybe it has something to do with the url being cart-2

    In forum: Virtue Theme
    #11013

    My clients choose to do it different, they want to show the go foward en backward buttons, but not the button for
    All Projects Default Portfolio Page. Do you know how i can make that possible?

    #11009

    Is it possible to have different home page, one for desktop computer, one for tablet and one for mobile devices ?

    #11006

    Hi Ben, i don’t know what happened, but i noticed that when viewing the site on a desktop, some of the content pages have the menu pushed underneath the content instead of being on the left.

    These two pages are showing the menu properly – on the left:

    http://www.shop-my-closet.ca/the-story/how-do-i-become-a-shop-my-closet-seller/
    http://www.shop-my-closet.ca/the-story/how-do-i-buy-from-shop-my-closet/

    And these pages have the menu under the content
    http://www.shop-my-closet.ca/the-story/
    http://www.shop-my-closet.ca/the-story/why-is-shop-my-closet-good-for-us-and-our-environment/
    http://www.shop-my-closet.ca/the-story/how-is-shop-my-closet-different-from-other-fashion-buy-and-sell-websites/
    http://www.shop-my-closet.ca/the-story/does-www-shop-my-closet-ca-replace-the-shop-my-closet-facebook-group/

    I am guessing it may have to do with buttons because we did something to make sure buttons are showing properly on the mobile devices. I removed the button class BTW and just used an image as you suggested.

    So how do i make sure that the menu is showing on the left when viewing the site on a desktop, and underneath the content when seeing it on a mobile device?

    Thanks!

    #11005

    Hi Ben – I scanned the forums and see many questions about fonts. None of them addressed my problem. Here is my product page and there are two problems:
    1. The font color of the price and delivery options disappears into the background. I’d like them both to be white.
    2. I want to eliminate the Description and Additional Information tabs below the product image, but leave the actual product information intact

    Thanks for a great theme – we’re almost ready to launch!
    Willem

    #10996

    I just added a little section about this to the bottom of this tutorial: https://www.kadencewp.com/using-page-builder-virtue-premium/

    Just have to click on the row style.

    Ben

    In forum: Virtue Theme

    In reply to: Main Menu

    #10969

    You can add a background to the body tag, in the theme options > advanced styling at the bottom of the page. Then make the content class, header class and topbar class all transparent by clicking the transparent checkbox next to the color for those areas. Also in the theme options > advanced styling.

    Ben

    #10952

    When you click insert widget all your widgets should appear. Have you tried using the search?
    Pagebuilder doesn’t leave widgets out?

    Can you send me a login so I can see?

    [email protected]

    #10941

    I already have plugins for soundcloud and Facebook feed but when using the pagebuilder I can’t insert these as widgets in to my page. After clicking ‘insert widget’ a list of only some widgets appears. Could anyone advise me how to do this, thanks

    In forum: Virtue Theme

    In reply to: Blog comments page

    #10929

    Ben, If you could take a look at the following page, http://www.baywatcharms.com/?p=499 , I am having a couple issues that I can’t fix. When I add the post, everything was centered. Shortly after installing the child theme it all moved to the left. I tried going to the actual page and changing. It worked until you updated the page. I am still having trouble with the background that is empty around the author box. I guess I messed this up some how. If you can help me with these two issue, I will try and not bother you anymore today.

    #10897

    ok but thats a product category page not a blog category page so it’s different.

    <?php	
    		if(is_front_page()) {
    				global $virtue_premium; $sidebar = $virtue_premium['home_sidebar'];
    				if (!empty($sidebar)) {
    					dynamic_sidebar($sidebar);
    					}
    				else  {
    					dynamic_sidebar('sidebar-primary');
    				} 
    		} elseif( class_exists('woocommerce') and (is_shop())) {
    			
    				global $virtue_premium; $sidebar = $virtue_premium['shop_sidebar'];
    	 			if (!empty($sidebar)) {
    					dynamic_sidebar($sidebar);
    					}
    				else  {
    					dynamic_sidebar('sidebar-primary');
    				} 
    		} elseif( class_exists('woocommerce') and (is_product_category() || is_product_tag())) {
    				global $virtue_premium; $sidebar = $virtue_premium['shop_cat_sidebar'];
                                  if (is_product_category('musique')) {
                                          dynamic_sidebar('test');
                                  } else if (!empty($sidebar)) {
    					dynamic_sidebar($sidebar);
    					}
    				else  {
    					dynamic_sidebar('sidebar-primary');
    				} 
    		} elseif (class_exists('woocommerce') and is_product()) {
    			global $post; $sidebar = get_post_meta( $post->ID, '_kad_sidebar_choice', true ); 
    	 		if (empty($sidebar) || $sidebar == 'default') {
    	 				global $virtue_premium; $psidebar = $virtue_premium['product_sidebar_default_sidebar'];
    	 				if(!empty($psidebar)) {
    						dynamic_sidebar($psidebar);
    					} else {
    						dynamic_sidebar('sidebar-primary');
    					}
    			} else if(!empty($sidebar)) {
    				dynamic_sidebar($sidebar);
    			} else {
    					dynamic_sidebar('sidebar-primary');
    				} 
    		} elseif( is_page_template('page-blog.php') || is_page_template('page-blog-grid.php') || is_page_template('page-sidebar.php') || is_page_template('page-feature-sidebar.php') || is_single() ) {
    		global $post; $sidebar = get_post_meta( $post->ID, '_kad_sidebar_choice', true ); 
    	 		if (!empty($sidebar)) {
    					dynamic_sidebar($sidebar);
    				}
    			else  {
    					dynamic_sidebar('sidebar-primary');
    				} 
    
    } elseif (is_archive()) {
    global $virtue_premium; 
     if(isset($virtue_premium['blog_cat_sidebar'])) {
    	dynamic_sidebar($virtue_premium['blog_cat_sidebar']);
      } else  {
    	dynamic_sidebar('sidebar-primary');
      } 
    }
    
    		
    		
    		elseif(is_category()) {
    			global $virtue_premium; 
    				if(isset($virtue_premium['blog_cat_sidebar'])) {
    					dynamic_sidebar($virtue_premium['blog_cat_sidebar']);
    					} else  {
    					dynamic_sidebar('sidebar-primary');
    				} 
    		}
    		elseif (is_tag()) {
    			dynamic_sidebar('sidebar-primary');
    		}
    		elseif (is_post_type_archive()) {
    			dynamic_sidebar('sidebar-primary');
    		}
    		 elseif (is_day()) {
    			 dynamic_sidebar('sidebar-primary');
    		 }
    		 elseif (is_month()) {
    			 dynamic_sidebar('sidebar-primary');
    		 }
    		 elseif (is_year()) {
    			 dynamic_sidebar('sidebar-primary');
    		 }
    		 elseif (is_author()) {
    			 dynamic_sidebar('sidebar-primary');
    		}
    		elseif (is_search()) {
    				global $virtue_premium; 
    				if(isset($virtue_premium['search_sidebar'])) {
    					dynamic_sidebar($virtue_premium['search_sidebar']);
    					} else  {
    					dynamic_sidebar('sidebar-primary');
    				} 
    		}
    		else {
    		dynamic_sidebar('sidebar-primary');
    	}
    ?>

    Ben

    In forum: Virtue Theme

    In reply to: Blog alignment issue

    #10896

    Just need to add this css:

    .page-header {
    display: none;
    }

    Ben

    #10893

    Yes it is a category page : http://teeshirtdivision.com/categorie-produit/musique/

    I try to show the sidebar “test” that I made in the back office.
    I have added this code :

    <?php	
    		if(is_front_page()) {
    				global $virtue_premium; $sidebar = $virtue_premium['home_sidebar'];
    				if (!empty($sidebar)) {
    					dynamic_sidebar($sidebar);
    					}
    				else  {
    					dynamic_sidebar('sidebar-primary');
    				} 
    		} elseif( class_exists('woocommerce') and (is_shop())) {
    			
    				global $virtue_premium; $sidebar = $virtue_premium['shop_sidebar'];
    	 			if (!empty($sidebar)) {
    					dynamic_sidebar($sidebar);
    					}
    				else  {
    					dynamic_sidebar('sidebar-primary');
    				} 
    		} elseif( class_exists('woocommerce') and (is_product_category() || is_product_tag())) {
    				global $virtue_premium; $sidebar = $virtue_premium['shop_cat_sidebar'];
    	 			if (!empty($sidebar)) {
    					dynamic_sidebar($sidebar);
    					}
    				else  {
    					dynamic_sidebar('sidebar-primary');
    				} 
    		} elseif (class_exists('woocommerce') and is_product()) {
    			global $post; $sidebar = get_post_meta( $post->ID, '_kad_sidebar_choice', true ); 
    	 		if (empty($sidebar) || $sidebar == 'default') {
    	 				global $virtue_premium; $psidebar = $virtue_premium['product_sidebar_default_sidebar'];
    	 				if(!empty($psidebar)) {
    						dynamic_sidebar($psidebar);
    					} else {
    						dynamic_sidebar('sidebar-primary');
    					}
    			} else if(!empty($sidebar)) {
    				dynamic_sidebar($sidebar);
    			} else {
    					dynamic_sidebar('sidebar-primary');
    				} 
    		} elseif( is_page_template('page-blog.php') || is_page_template('page-blog-grid.php') || is_page_template('page-sidebar.php') || is_page_template('page-feature-sidebar.php') || is_single() ) {
    		global $post; $sidebar = get_post_meta( $post->ID, '_kad_sidebar_choice', true ); 
    	 		if (!empty($sidebar)) {
    					dynamic_sidebar($sidebar);
    				}
    			else  {
    					dynamic_sidebar('sidebar-primary');
    				} 
    		//} elseif (is_archive()) {
    			//	global $virtue_premium; 
    				//if(isset($virtue_premium['blog_cat_sidebar'])) {
    					//dynamic_sidebar($virtue_premium['blog_cat_sidebar']);
    					//} else  {
    					//dynamic_sidebar('sidebar-primary');
    				//} 
    		//}
    
    } elseif (is_archive()) {
    global $virtue_premium; 
     if (is_category(‘musique’)) {
      dynamic_sidebar(‘test’);
      } else if(isset($virtue_premium['blog_cat_sidebar'])) {
    	dynamic_sidebar($virtue_premium['blog_cat_sidebar']);
      } else  {
    	dynamic_sidebar('sidebar-primary');
      } 
    }
    
    		
    		
    		elseif(is_category()) {
    			global $virtue_premium; 
    				if(isset($virtue_premium['blog_cat_sidebar'])) {
    					dynamic_sidebar($virtue_premium['blog_cat_sidebar']);
    					} else  {
    					dynamic_sidebar('sidebar-primary');
    				} 
    		}
    		elseif (is_tag()) {
    			dynamic_sidebar('sidebar-primary');
    		}
    		elseif (is_post_type_archive()) {
    			dynamic_sidebar('sidebar-primary');
    		}
    		 elseif (is_day()) {
    			 dynamic_sidebar('sidebar-primary');
    		 }
    		 elseif (is_month()) {
    			 dynamic_sidebar('sidebar-primary');
    		 }
    		 elseif (is_year()) {
    			 dynamic_sidebar('sidebar-primary');
    		 }
    		 elseif (is_author()) {
    			 dynamic_sidebar('sidebar-primary');
    		}
    		elseif (is_search()) {
    				global $virtue_premium; 
    				if(isset($virtue_premium['search_sidebar'])) {
    					dynamic_sidebar($virtue_premium['search_sidebar']);
    					} else  {
    					dynamic_sidebar('sidebar-primary');
    				} 
    		}
    		else {
    		dynamic_sidebar('sidebar-primary');
    	}
    ?>
    In forum: Virtue Theme

    In reply to: Blog alignment issue

    #10892

    Ben, After making the change to the child theme. There is another issue that I can’t seem to resolve. The default page title is showing up again. How do I make it where it doesn’t show. I will be using a graphic instead. http://www.baywatcharms.com/?page_id=291

    #10880

    Thanks for the quick reply, Ben. Unfortunately, that code doesn’t seem to work for me. The icon box shortcode in pagebuilder doesn’t give me the option to upload my own icons so that won’t work for what I’m going for. Any further help would be much appreciated!

    Thanks

    #10875

    You can with css.

    .home-iconmenu.homeitemcount1 a:hover {
    background: #ddd;
    color: #fff;
    }
    

    just change your count number up for each item.

    Or, like you saw in the video with the shortcodes and using pagebuilder.

    Ben

    #10872

    Sorry to hijack this thread, but going one step further with this request, is there a way to have different hover colors for each item in the icon menu? I remember seeing something similar in one of your YouTube videos where you used an example layout with Page Builder.

    Thanks,
    Jason

    In forum: Virtue Theme
    #10841

    Hi there!

    last night my personal site crushed and when i contacted justhost they said that it could be because the theme does not support jetpack (?). i had the lite one on it, but as i am a trier, i re-install wordpress and jetpack & installed the premium. all is working perfect but when i tried to change the icon hover color to #ff6666 as used to be on the lite version, the comands isnt working on css and kept the dark blue defalt. I have tried the same code i used b4 : .home-iconmenu a:hover {background: #ff6666;} /*background on hover color*/

    and tried as well a few codes i found on open sources as follow and a few similar ones but anything is working….

    .home-iconmenu a i {color:#444;} /*icon color*/
    .home-iconmenu a h4 {color:#444;} /*text color*/
    .home-iconmenu a {background: #bbb;} /*background color*/
    .home-iconmenu a:hover {background: #dddddd;} /*background on hover color*/

    as i changed to premium to try to sort the ”crush” that was having on the pages, should i use a different code? or maybe should i set something different (remembering that i have reinstall every single thing….)?

    thank you.
    Pip

    In forum: Virtue Theme

    In reply to: Blog alignment issue

    #10833

    Ben, I got rid of the period, and took of the comment around the last css on the page, and it didn’t fix it. I think I will just take all the css and put them on a notepad page, and just replace them one at a time until I find the one that is causing the problem.

    In forum: Virtue Theme

    In reply to: Blog alignment issue

    #10832

    You have a period in your css:

    /*--  THIS CONTROLS THE BORDER AT THE BOTTOM OF THE TOP BAR  --*/
    .topclass                                    {
                                                     border-bottom: 2px solid #fff;
                                                     }
    
    /*--  THIS CONTROLS THE HEIGHT HEADER  --*/
    .headerclass                               {
                                                     border-bottom: 2px solid #fff;
                                                     height: 300px;
                                                     }
    /*--  THIS CONTROLS THE BORDER AT THE TOP OF THE FOOTER  --*/
    .footerclass                                {
                                                     border-top: 2px solid #fff;
                                                     }
    
    /*--  THIS CONTROLS THE PADDING OF THE FOOTER  --*/
    .footercredits                              {
                                                     padding-top: 0px; 
                                                     padding-bottom: 0px;
                                                     }
    
    /*--  THIS CONTROLS THE PARAGRAPH IN THE FOOTER  --*/
    .footercredits p                           {
                                                     text-align: center;
                                                     font-size: 10px;
                                                     color:#fff;
                                                     }
    
    /*--  THIS CONTROLS THE FONT TEXT IN FOOTER CREDITS  --*/
    .footerclass a                              {
                                                     color: #fff;
                                                     }
    
    /*--  THIS CONTROLS THE PADDING ABOVE THE HOME PAGE SLIDER  --*/
    .contentclass                              {
                                                    padding-bottom: 30px;
                                                    padding-top: 30px;
                                                    }
    
    /*--  THIS CONTROLS THE BACKGROUND COLOR OF THE TEXT SECTION, ON THE CERAKOTE REFINISHING PAGE, BELOW THE TITLE IMAGE  --*/
    #pgc-372-1-1                        {
                                                  background-color: darkslategrey;
                                                  }
    
    /*--  THIS CONTROLS THE BACK BROUND COLOR OF THE TEXT SECTION, ON THE HANDGUN GALLERY PAGE, BELOW THE TITLE IMAGE  --*/
    #pgc-291-1-1                       {
                                                 background-color: darkslategrey;
                                                 }
    
    /*--  THIS CONTROLS THE RECENT POST BACKGROUND COLOR ON THE HOME PAGE  --*/
    .home_blog article                  {
                                                background-color: darkslategrey;
                                                }
    
    /*--  THIS CONTROLS POST MEDIA DATE, AND SUB HEADING ON ALL POST PAGES  --*/
    .color_gray, #kadbreadcrumbs a, .subhead, .subhead a, .posttags, .posttags a, .product_meta a                    {
                                                color: wheat;
                                                }
    
    /*--  THIS CONTROLS THE POST HEADING COLOR ON THE HOME PAGE  --*/
    h5                                        {
                                                color: wheat;
                                                }
    
    /*--  THIS CONTROLS THE WIDTH, AND MAIN BACKGROUND COLOR OF THE MAIN BLOG PAGE  --*/
    .col-lg-9                               {
                                                width: 100%;
                                                background-color: darkslategrey;
                                                }
    
    /*-- THIS CONTROLS THE HEADING COLOR OF THE BLOG PAGES  --*/
    h3                                        {
                                                color: wheat;
                                                }
    
    /*--  THIS CONTROLS THE FONT COLOR ON THE RECENT POST ON THE HOME PAGE  --*/
    body                                     {
                                                color: white;
                                                }
    
    .
    
    /*
    /*--  THIS CONTROLS THE BACKGROUND IN THE BLOG RESPONSE AREA - IN THE SECTION WHERE IT SAYS ABOUT AUTHOR - IT MAKES THE BACKGROUND BLACK, AND THE TEXT WHITE  --*/
    .post .nav-tabs>li.active>a, .post .nav-tabs>li.active>a:hover, .post .nav-tabs>li.active>a:focus               {
                                                   background: #darkslategrey;
                                                   }
    
    */
    
    

    with as much css as your are using I would recommend using a child theme.

    Ben

Viewing 20 results - 51,561 through 51,580 (of 53,646 total)