Forum Replies Created
-
Author
-
sharmstr
ModeratorYour child theme’s style.css file isnt even loading. Why do you have so many files 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
ModeratorTheme Options > General: Quick CSS
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
ModeratorEdit the page, click on the pencil icon for the heading shortcode to bring up the settings for 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
ModeratorPut it in Quick css.
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 – In the shortcode settings.
2 – Try this instead
COPY CODE.header-color .navbar-nav li .caret:after { color: #fff !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
ModeratorPut this in your quick css
COPY CODE#members-dir-search { display: none !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
ModeratorYou’re running an extremely old version of Kleo. So old in fact that you are no longer able to get theme update notices. You need to update your site using the FTP method as described here: 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
Moderatormoving because this isnt a kleo bug.
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 – https://archived.seventhqueen.com/forums/topic/change-user-xprofile-section-icons#post-92800. Change the numbers to change the order and add a line for the posts. If the posts were created with Social Articles, it would be.
COPY CODE$bp->bp_nav['articles']['position'] = 10;
https://codex.buddypress.org/getting-started/guides/change-members-profile-landing-tab/
2 – The sites tab is automatically added if you do a network installation: http://codex.wordpress.org/Create_A_Network
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
January 16, 2016 at 14:08 in reply to: remove the duplicate grey bar on top and remove bar with phone number #98813sharmstr
Moderator1 – Theme options > Header > Disable top menu
2 – Theme options > Header > Show breadcrub: Off, Theme options > header > Main menu info: delete contents, Theme options > layout > Page title location: Main section
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 – Increase the line height of the Get Connected text.
2 – Try this in your quick css
COPY CODE#menu-main-menu .caret:after { color: #fff; }
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
ModeratorYou can import specific pages. Appearance > Demo Data > Specific 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
ModeratorWP 4.4 added srcset to images which has screwed up a bunch of things. Looks like the Kleo devs have already fixed this in the next version of Kleo. In the meantime, see if this solves the issue.
In your child theme’s functions.php file, add this
COPY CODEfunction sq_remove_img_srcset( $attr ) { if (! empty($attr)) { unset($attr['srcset']); unset($attr['sizes']); } return $attr; }
Then replace /kleo/woocommerce/single-product/product-image.php with the attached file (or put it in your child theme). Make sure you keep a copy of the original file (in case this doesnt work) and rename .txt to .php.
Let me know.
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
ModeratorYou cant inject the profile menu anywhere because the Buddypress code that builds the menu determines which profile screen you’re on. Since you want to put it on a random page, it will never work. The best you can do is use the same font icons to add links to sections of the profile. The attachment shows the results on the top and how I did it in VC on the bottom.
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
ModeratorWoocommerce has a filter to inject information in that location. Here’s the code to do that. Put it in your child theme’s functions.php file. You’ll have to figure out how to get the custom field though.
COPY CODEadd_action( 'woocommerce_after_shop_loop_item_title', 'add_brands', 7 ); function add_brands() { // replace the below code with your code to get the brand name echo "brand name 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
ModeratorThat’s you side menu. Sounds like you dont even want it on your site, so disable it in theme options.
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
ModeratorYou need to enable registration. Settings > General: Anyone can register.
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
ModeratorNo, you cant edit them in VC. You need to edit the theme file templates directly. If you dont know how to do that, you will need to hire someone to assist you.
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
ModeratorEdit the slider settings and choose the category you want.
Slider Settings > Post Based Slider > Fetch Posts by Categories > Post > Select your Post Category
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 not supposed to launch the lightbox, its supposed to switch the main image. In any case, it could be a plugin conflict. Disable the extra plugins you have installed to verify.
While you’re at it, implement this fix for your product descriptions: https://archived.seventhqueen.com/forums/topic/product-descriptions-not-displaying-properly#post-91521
let me know.
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. Change “My Custom Member Search Text” to whatever you want.
COPY CODEadd_filter( 'bp_get_search_default_text', 'change_default_search_text' ); function change_default_search_text( $default_text ) { if ( bp_current_component() == 'members' ) { $default_text = "My Custom Member Search Text"; } return $default_text; }
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
ModeratorTheme Options > Styling > Header: Link color and Hover link cover
If you want to change individual items, see this: https://archived.seventhqueen.com/forums/topic/change-background-color-in-each-menu-item#post-96185
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 no hook in Kleo to inject anything into the the code there so the portfolio template would have to be edited it. If you dont know how to do that, then you should hire someone to do that for you since its beyond the scope of support here. You always have the option to add it the price to the image with an image editor program.
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
ModeratorDid you set the post type in the news ticker (marquee) shortcode?
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
ModeratorHere’s the info that you can’t see in that topic
“I circumvented the system by copying custom_styles directly into the style.css of the child theme. that’s not a proper solution, but it works for now”
If you have further questions, please ask in that topic so we can keep all of this info together. Plus, that topic is assigned to the developer so you’ll get the best help from him.
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
ModeratorYour site is throwing a 404 error on the dynamic stylesheet that Buddyapp creates. You are having the same issue as this: https://archived.seventhqueen.com/forums/topic/no-styling-after-installation
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 you can do is set the featured image so it shows up in the VC shortcodes, then in your post, scroll down to Theme General Settings > Media and disable ‘show media’.
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
ModeratorWait – That only works with the Kleo Posts shortcode. Not the VC posts shortcodes.
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
ModeratorDo you have ‘get featured image from content’ enabled in theme options > blog?
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
ModeratorThanks @abe
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
Moderatormoving because this isnt a kleo bug
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
ModeratorYou site is throwing ‘mixed-content’ errors which is a common issue when you switch to https://. You need to clear your server cache and/or purge your cdn if you have one in place.
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
ModeratorAs the Kleo documentation states, you need to edit the slider settings after you import it and select at least one category.
https://archived.seventhqueen.com/documentation/kleo#revslider
You also need to edit the News Ticker settings and select the post type.
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
ModeratorWe cant tell what’s going on unless you have the child theme enabled. Did you flush your cache after enabling the 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
ModeratorI need ftp and wp admin access.
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
ModeratorAt this point you need to use categories or tags to filter the posts to make the shortcodes display different content. In the next version of Kleo (dont have an eta) you’ll be able to set an offset. That will allow you to things like set 1 type of news shortcode to show the latest 5 posts, then the next news shortcode start at the 6th post.
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
ModeratorPerhaps its a setting on your server or a plugin you’re using.
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
ModeratorAlso, I just checked your 300×300 images that are produced by WP and those are of poor quality 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
-
AuthorPosts