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 'site'

Home / Forums / Search / Search Results for 'site'

Viewing 20 results - 26,981 through 27,000 (of 39,333 total)
  • Author
    Search Results
  • In forum: Virtue Theme

    In reply to: Can't upload pictures

    #96318

    In your tools > system status can you post what your max upload size is? Max memory and what version of php you are using?

    Please post a link to your site and also can you tell use what plugins your using and first try to deactivate them as a test.

    Ben

    #96315

    Yoast shows on every post type. It’s not post specific options.

    Are you sure you need to create a custom post type to have a seperate category in your blog? You can have seperate pages that only show posts of a certain category.

    Blog posts options are post type specific and you can’t create a new post type and assume they would take on the role of blog posts. They won’t in many ways including permalinks and archive options. so for what your wanting to do you would have to create post type specific options that saved meta content…

    For example of how you can hook into the metabox platform through a child theme:

    add_filter( 'cmb_meta_boxes', 'kt_custom_metaboxes' );
    
    function kt_custom_metaboxes( array $meta_boxes ) {
    
    	$prefix = '_kad_';
    
    	$meta_boxes[] = array(
    				'id'         => 'standard_post_metabox',
    				'title'      => __("Standard Post Options", 'virtue'),
    				'pages'      => array( 'post'), // Post type
    				'context'    => 'normal',
    				'priority'   => 'high',
    				'show_names' => true,
    				'fields' => array(
    			
    			array(
    				'name'    => __("Head Content", 'virtue' ),
    				'desc'    => '',
    				'id'      => $prefix . 'blog_head',
    				'type'    => 'select',
    				'options' => array(
    					array( 'name' => __('Site Default', 'virtue' ), 'value' => 'default', ),
    					array( 'name' => __("None", 'virtue' ), 'value' => 'none', ),
    					array( 'name' => __("Image Slider (Flex Slider)", 'virtue' ), 'value' => 'flex', ),
    					array( 'name' => __("Carousel Slider - (Caroufedsel Slider)", 'virtue' ), 'value' => 'carouselslider', ),
    					array( 'name' => __("Image Carousel", 'virtue' ), 'value' => 'carousel', ),
    					array( 'name' => __("Video", 'virtue' ), 'value' => 'video', ),
    					array( 'name' => __("Image", 'virtue' ), 'value' => 'image', ),
    					array( 'name' => __("Shortcode", 'virtue' ), 'value' => 'shortcode', ),
    				),
    			),
    			array(
    				'name' => __("Max Image/Slider Height", 'virtue' ),
    				'desc' => __("Default is: 400 (Note: just input number, example: 350)", 'virtue' ),
    				'id'   => $prefix . 'posthead_height',
    				'type' => 'text_small',
    			),
    			array(
    				'name' => __("Max Image/Slider Width", 'virtue' ),
    				'desc' => __("Default is: 770 or 1140 on fullwidth posts (Note: just input number, example: 650, does not apply to carousel slider)", 'virtue' ),
    				'id'   => $prefix . 'posthead_width',
    				'type' => 'text_small',
    			),
    			array(
    				'name'    => __("Post Summary", 'virtue' ),
    				'desc'    => '',
    				'id'      => $prefix . 'post_summery',
    				'type'    => 'select',
    				'options' => array(
    					array( 'name' => __('Site Default', 'virtue' ), 'value' => 'default', ),
    					array( 'name' => __('Text', 'virtue' ), 'value' => 'text', ),
    					array( 'name' => __('Portrait Image', 'virtue'), 'value' => 'img_portrait', ),
    					array( 'name' => __('Landscape Image', 'virtue'), 'value' => 'img_landscape', ),
    					array( 'name' => __('Portrait Image Slider', 'virtue'), 'value' => 'slider_portrait', ),
    					array( 'name' => __('Landscape Image Slider', 'virtue'), 'value' => 'slider_landscape', ),
    					array( 'name' => __('Video', 'virtue'), 'value' => 'video', ),
    				),
    			),
    			array(
    						'name' => __('If Video Post', 'virtue'),
    						'desc' => __('Place Embed Code Here, works with youtube, vimeo...', 'virtue'),
    						'id'   => $prefix . 'post_video',
    						'type' => 'textarea_code',
    			),
    			array(
    						'name' => __('If Shortcode Head Content', 'virtue'),
    						'desc' => __('Place Shortcode Here', 'virtue'),
    						'id'   => $prefix . 'post_shortcode',
    						'type' => 'textarea_code',
    			),
    		),
    	);
    return $meta_boxes;
    }

    You would have to change “post” to the post type slug of whatever post they you created in the posts types area for the meta “pages” array.

    Ben

    In forum: Pinnacle Theme

    In reply to: Main Menù

    #96305

    Menus are assigned via Appearance> Menus. There, you can de-select the main menu, and it will no longer appear on your site.

    https://www.kadencewp.com/building-displaying-menus/

    This tutorial explains more.

    In forum: Virtue Theme

    In reply to: Nothing shown

    #96304

    You don’t need to specific on the lightbox nothing with javascript works because of your security issue in jquery.migrate

    Doesn’t matter if the javascript is from a plugin or theme or whatever its not going to run when the browser throws a security error.

    Just want to clarify here are both sites we’ve been talking about hosted on the same server? with the same php version and settings? Including mod-security settings?

    Ben

    #96300

    What is the link to your site where you are adding this?

    Ben

    In forum: Virtue Theme

    In reply to: Can't upload pictures

    #96280

    That’s odd and shouldn’t be happening. Did you make any other changes besides the theme before this happened?

    What happens when you reactivate the free theme? Can you see all of your content then?

    I would start with that just to be sure that your data hasn’t been lost, and also, a link to the site that you’re working on is always helpful.

    Let me know what you find.

    #96279

    Site is nearing completion, began to look at the mobile versions, and having issues with viewing on a mobile screen (Site not resizing appropriately).
    Probably due to increasing max width of container in custom css.

    Site; http://www.ihealthup.com

    Custom CSS below, if anything needs to be removed or is not necessary please let me know.

    .page-header {
    display: none;
    }
    .container {
    width: 1400px;
    }
    .footerclass h3 {
    font-size: 14px;
    color: #000000;
    }
    .topbarmenu ul li a {
    font-size: 14px;
    }
    .footerclass ul li a {
    font-size: 14px;
    }

    Thanks, Igor

    #96263

    Hey Caroline,
    Looks like you’re using a different carousel slider on the english site? What method have you used in translating? Is this the only multilingual issue you’re experiencing?

    Hannah

    #96255
    This reply has been marked as private.
    #96242

    I’m trying to add images around the body, footer, and widget areas. I want it to look like this site: but to be responsive.

    What I have so far (body and widget only yet) isn’t lining up quite right. I’m sure there’s a better way. Can you please help me with this?

    BODY
    .wrap.contentclass {
    background: url(http://…/content-mainbg-top2.png) no-repeat top / contain,
    url(http://…/content-mainbg-bottom3.png) no-repeat bottom center / contain,
    url(http://…/content-mainbg.jpg) repeat-y 50% 50% / contain;
    clear:both;
    padding: 50px 10px 20px 10px;
    margin: 0 0 20px;
    }

    WIDGET:
    .sidebar .widget h3 {
    background:transparent url(http://…/widget-heading.png) no-repeat scroll 10px 14px;
    display:block;
    color: #352014;
    font-family: ‘Lato’, sans-serif;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 8px 30px 10px 50px;
    }
    .sidebar p {
    font-size: inherit;
    padding: 0 15px 15px 15px;
    }

    .sidebar .widget {
    background: url(http://…/sidebar-widget-top3.png) no-repeat top center / contain,
    url(http://…/sidebar-widget-bottom4.png) no-repeat bottom center / contain,
    url(http://…/sidebar-widget-bg-left1.png) repeat-y left center / auto,
    url(http://…/sidebar-widget-bg-right1.png) repeat-y right center / auto;
    padding: 50px 10px 20px 10px;
    margin: 0 0 20px;
    overflow: auto;
    }

    .sidebar section.widget ul li {
    background: url(http://…/separator.png) bottom center no-repeat;
    }

    .sidebar section.widget ul li a {
    display: block;
    background: url(http://…/arrow.png) no-repeat scroll 13px center;
    padding: 8px 4px 8px 40px; }

    FOOTER:
    No ideas yet…

    Thanks again.

    #96228

    Hi,

    Im having trouble with a graphic when something is added to the basket. The site is elisionmusic.com and the problem looks like this The “View Basket is clashing with the text behind it. Is there any way to set a background for that text or is this not possible?

    Im sorry if this is an issue with WooCommerce, I’m not too certain what graphic comes from what plugin.

    Thanks so much for your help!

    Lewis

    #96224

    This is the default behavior of the theme galleries. I believe that you would have to make a child theme to successfully make your site behave this way.

    If you haven’t already made a child theme, here is a tutorial that will show you how. I unfortunately don’t know which edits you’ll need to make specifically, but hopefully this gets you as close as possible before anyone else chimes in on the issue.

    https://www.kadencewp.com/child-themes/

    #96194

    Hi Kevin, thanks very much! The main issue is that EDD product “pages” aren’t real “pages” in the sense that you can choose a template for them, add sidebars individually, etc. There isn’t even the option of using the page builder plugin, it doesn’t show up at all (just the visual and text tabs). I have a sidebar I’d like to use, but right now Pinnacle is treating the download items pages as blog posts, so it’s automatically pulling in the primary sidebar. I don’t know how to code, I’m not using a child theme and I’m really not wanting to get into the coding side (as I tried once following a tutorial and broke the site). The only workaround I can see is to create a separate page for each individual item in my shop with Pinnacle, then paste in the EDD download shortcode. But that’s a lot of extra work as I have over 30 individual downloads with extensive descriptions, Yoast SEO info already designated, snippets, etc, and then I’m having to double my work every time I want to add a new download so that’s not an ideal solution.

    #96184

    Hi Ben,

    It doesn’t seem like a plugin is the issue with the midmaineyoga website, or if it is, I’m not able to figure out which one is causing the problem. Any other suggestions?

    -Caitlin

    In forum: Pinnacle Theme

    In reply to: Custom CSS for home

    #96182

    Is it not working when set to site default?

    Hannah

    #96177

    Yeah this isn’t memory like space. It’s got to do with processing power and when I checked your site your getting 500 (Internal Server Error). that usually means your hitting a php limit in your php settings.

    Ben

    In forum: Pinnacle Theme

    In reply to: Mobile Nav Menu

    #96176

    What exactly are you wanting to happen with the menu? Like the way it stays at the top?

    You can try going to Theme Options> Site Header and switch “Enable Mobile Sticky Header?” to ON.

    Give that a try and let me know if that’s what you were talking about.

    #96175

    You have this error:

    Mixed Content: The page at 'https://soulfully-connecting.com/' was loaded over HTTPS, but requested an insecure stylesheet 'http://soulfully-connecting.com/?action=display_custom_css_code'. This request has been blocked; the content must be served over HTTPS.
    

    Meaning you need to make sure your site is loading with https correctly. In your settings > general have you made sure to set https for the site urls.

    Ben

    In forum: Virtue Theme

    In reply to: Icon menu

    #96162

    Hey,
    Do you mind posting a link? Are you having issues with uploads anywhere else on your site? It could be your php settings need to be increased. Your host should be able to help if that’s the case.

    Hannah

    #96150
    This reply has been marked as private.
Viewing 20 results - 26,981 through 27,000 (of 39,333 total)