Forum Replies Created
-
Author
-
sharmstr
ModeratorDo you have Hide Breadcrumb section for profile pages enabled?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderatorsocket and breadcrumb are different areas. the socket is down just above the footer.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorPost Format docs: https://codex.wordpress.org/Post_Formats
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorChange the post format to gallery, then scroll down to Theme General Settings, click on the media tab and add your images
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorPut this in your child theme’s functions.php file
COPY CODEadd_filter( 'kleo_meta_boxes', 'custom_kleo_metaboxes' ); /** * Define the metabox and field configurations. * * @param array $meta_boxes * @return array */ function custom_kleo_metaboxes( array $meta_boxes ) { // Start with an underscore to hide fields from custom fields list $prefix = '_kleo_'; //Custom menu $kleo_menus = wp_get_nav_menus(); $menu_options = array(); $menu_options[] = array('value' => 'default', 'name' => 'Site default'); foreach ($kleo_menus as $menu) { $menu_options[] = array('value' => $menu->slug, 'name' => $menu->name); } $meta_boxes[] = array( 'id' => 'page_menu', 'title' => 'Main menu options', 'pages' => array('product'), // Post type 'context' => 'side', 'priority' => 'default', 'show_names' => true, // Show field names on the left 'fields' => array( array( 'name' => 'Custom menu', 'desc' => '', 'id' => $prefix . 'page_menu', 'type' => 'select', 'options' => $menu_options, 'value' => 'default' ), array( 'name' => 'Hide Shop', 'desc' => 'Check to hide the Shop icon in the main menu', 'id' => $prefix . 'hide_shop_icon', 'type' => 'checkbox', 'value' => '1' ), array( 'name' => 'Hide Search', 'desc' => 'Check to hide the Search icon in the main menu', 'id' => $prefix . 'hide_search_icon', 'type' => 'checkbox', 'value' => '1' ), ), ); // Add other metaboxes as needed return $meta_boxes; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorBecause that’s the title of the form that’s already being displayed.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderator1 – That demo page isnt a blog page. Its was built using the kleo posts shortcode. That’s why the styling is different. In any case, put this in your quick css.
COPY CODE.posts-listing.standard-listing .type-post { border-bottom-color: #e5e5e5; border-bottom-width: 1px; border-bottom-style: solid; padding-bottom: 20px; }
2 – Looks like you’ve figured out how to remove the featured posts.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorPut this in your quick css
COPY CODE.mfp-bg { z-index: 1040 !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorAwesome. Thank you for sharing.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorPut this in your quick css
COPY CODE.vc_tta-color-black.vc_tta-style-modern .vc_tta-panel.vc_active .vc_tta-panel-title > a { color: #666666 !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorPlease provide credentials.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
August 27, 2015 at 21:22 in reply to: Is it possible to change Blog default to kleo news-magazine #74943sharmstr
ModeratorEdit the new page and click on edit next to the permalink.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorAnytime 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
August 27, 2015 at 21:11 in reply to: Is it possible to change Blog default to kleo news-magazine #74938sharmstr
ModeratorChange the news page permalink to blog. You’ll need to set your blog page permalink to something else. Standard WP stuff. 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorSorry for the confusion. I figured if you knew what it was that you’d also know that there’s nothing I can do. You need to do it or contact your host to help.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
August 27, 2015 at 20:38 in reply to: Is it possible to change Blog default to kleo news-magazine #74928sharmstr
ModeratorChange your menu item to point to the news page.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorSorry, classic mode
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
Attachments:
You must be logged in to view attached files.sharmstr
ModeratorKleo isnt causing it and its nothing I can fix. Its a 403 Forbidden error. I thought you knew what that meant since you said “Yes…” http://pcsupport.about.com/od/findbyerrormessage/a/403error.htm
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
August 27, 2015 at 19:41 in reply to: There was a problem with your action. Please try again or reload the page. #74891sharmstr
ModeratorClear your cache and/or CDN.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorThere’s a stick topic on the subject https://archived.seventhqueen.com/forums/topic/steps-to-update-kleo-theme
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorIf you mean “Top Menu”, you need to either turn it on for the page in Theme General Settings or for the site in Theme Options > Header Options > Display Top Bar
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorPlease search before posting. I’ve answered this a few times. Put the solution found here in your child theme functions.php file: https://archived.seventhqueen.com/forums/topic/deleting-archive-for-category-text#post-72439
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorDelete the cache files that W3 Total Cache created and also try resaving your permalinks.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorWhat version of Kleo are you running. That was fixed in Kleo 3.0.2
Version 3.0.2 – 23.06.2015
– GeoDirectory import data options in WP admin – Appearance – KLEO Demo Data
– Added an option to disable AJAX Theme options saving if you encounter problems. Just add to your child theme/functions.php this code: add_filter( ‘kleo_theme_options_ajax’, ‘__return_false’ );
– Fixed an issue with the pasted shortcodes in the Header contet and Bottom content that wasn’t interpreted correctly.
– Added small backward compat for users who havent upgraded to BP 2.3+
– Small social header fix for submenus going under the main menu
– Fixed active color profile tabs on Chrome browser
– Fix errors when previewing anything that uses iFrames in Wp Admin. thanks @sharmstr See: https://archived.seventhqueen.com/forums/topic/errors-with-arforms-and-kleos-config-php-of-the-pmpro-plugin
– Custom page title adjustments
– Small search and cart dropdown fix when using Header with logo to right
– Woocommerce/BuddyPress fix to display all orders in profile.
– Woocommerce title in main section now can be hidden if that option is checked in the Shop page
– Updated Visual composer to version 4.5.3 for PrettyPhoto plugin vulnerabilityHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorI needed access to so I could see the theme options. But doesnt matter. The same thing is happening with jetpack. If you look at the console, its throwing 403 forbidden errors when trying to load the jetpack fonts. So I suppose I can assume its doing the same for the fontello fonts.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
Attachments:
You must be logged in to view attached files.sharmstr
ModeratorTechnically, the content element needs to be attached to a ::before or ::after pseudo element. Chrome apparently doesnt care, but firefox does. Add css for the ::before pseudo element
.main-title::before
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorThe code in the link I gave you does that. See attached when I apply it to my site.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
Attachments:
You must be logged in to view attached files.sharmstr
ModeratorI need a link to the site
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorProvide a link so I can see it.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorSwitch to classic view and copy the code into a text file and attach here.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorKleo is a theme. You need a plugin. There are suggestions here: https://archived.seventhqueen.com/forums/topic/integration-for-wc-product-vendors-and-kleo
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
August 27, 2015 at 04:21 in reply to: Visual Composer image background No Repeat…is repeating #74804sharmstr
ModeratorI’ve confirmed this to be an issue. Click on the gear icon and add this css for now.
COPY CODEsection.container-wrap { background-repeat: no-repeat; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorPMPro has a bbpress plugin. Consult their website.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorIts working fine on my 3 sites without issue and running Kleo 3.0.7 (which is the latest version, not 3.0.6). Upgrade and try again. If it still doesnt work, look for plugin conflicts or perhaps you have old code in your child theme.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorIf you want to give me access, I’ll be happy to take a look as well.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorNeed to see a link. Did you clear your cache/cdn after upgrading?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorNeed to see a link.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorProbably a plugin css conflict. Need to see a link.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorIn every case I’ve been involved in, clearing the cache and purging the cdn solved the issue. Are you positive that its still not trying to server old files? What errors are you getting when you use your browser inspector?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorPlease search before asking questions. Thank you.
https://archived.seventhqueen.com/forums/topic/member-profile-page-edit#post-70536
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
-
AuthorPosts