Forum Replies Created
-
Author
-
sharmstr
Moderator@abe – We have an issue when the directory is not set as the home page AND transparent main menu is turned on.
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
ModeratorNot a Sir. You are welcome.
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
Moderatorappearance > kleo demo > posts. as it states, due to copyright you will not get all images.
you do not have to run any of those plugins
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’re not going to set an image for the background of the top of the page, then turn off transparent main menu for that 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
ModeratorHere’s a link the the kleo demo. Is the issue that you’re using a transparent main menu on your page? http://seventhqueen.com/themes/kleo/business-directory?geodir_signup=true
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 link to your site doesnt work
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, upgrade Kleo to 3.0.4. Save the theme options after you upgrade. If you still have the issue, report back.
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
ModeratorCheck Theme Options > Styling > Main > Hightlight color “Select your text color for highlight elements like buttons and other elements what will stand out like notification bubbles”
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 – Theme Options > Styling > Header > Background
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
July 17, 2015 at 15:06 in reply to: Is is able to remove theme settings from post new/edit screen? #68695sharmstr
ModeratorYou can use current_user_can(‘manage_options’) to determine whether or not to hide stuff. Example
COPY CODEif( !current_user_can('manage_options') ) { remove_meta_box( 'mymetabox_revslider_0', 'post', 'normal' ); }
That says “If the user is not admin, remove the rev slider metabox from the post editor.”
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
July 17, 2015 at 15:02 in reply to: Is is able to remove theme settings from post new/edit screen? #68694sharmstr
ModeratorRemoving items from admin toolbar: https://codex.wordpress.org/Function_Reference/remove_menu
Removing items from admin menu: https://codex.wordpress.org/Function_Reference/remove_menu_page
Removing sections of Theme General Settings: The entire section is in /kleo/lib/metaboxes.php This topic should explain it a bit: https://archived.seventhqueen.com/forums/topic/add-kleo-meta-box-to-custom-post-type
Google how to remove post formats
Google how to remove MCE toolbar buttons.
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 main topic file is /kleo/bbpress/content-single-topic.php. Copy that to your child theme. Within there, you’ll see that it calls out different templates for different parts of the page. You can reorder those lines to move sections around.
For the sorting order, ask on the bbpress forum.
For the voting, start a new topic in the Feature Request forum. Perhaps the developers will turn it into a plugin. Otherwise, there’s this plugin which is similar: https://wordpress.org/plugins/wp-idea-stream/
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 not built into Kleo. You’ll have to find a plugin for that.
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
ModeratorSend an email to dev@seventhqueen.com.
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_before_main_content does. Not sure why you’re seeing it stretch across the top of sidebar. If I put this in my functions.php file, it echos text just in the main content section. Not in the above the sidebar. See the attached and note the sidebar border extending to the top as it should. Also attached is the resulting html source code.
COPY CODEadd_action('kleo_before_main_content','my_custom_content_header'); function my_custom_content_header() { echo "This is my custom 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
Attachments:
You must be logged in to view attached files.sharmstr
Moderator1 – I dont know. I only work with Kleo
2 – The background is attached above
3 -As explained above, you need to install BP Profile Search. Then build your search form and use that form ID on the 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
Moderatorrespond privately with a a link and admin 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
sharmstr
ModeratorAdd this to your child theme’s functions.php file. Refresh the options page and try saving again.
COPY CODEadd_filter( 'kleo_theme_options_ajax', '__return_false' );
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
ModeratorCheck your image size settings in woocommerce settings. Sound like you might have them set up wrong.
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
July 17, 2015 at 02:54 in reply to: display a menu tab in user profile only for a list of users #68642sharmstr
ModeratorThis isn’t handled by Kleo. Kleo will automatically style any tab and screen (that’s what they are called) that you add to the profile. Consult the buddypress documentation on how to add a new tab and screen. You wont be touching any kleo files.
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
ModeratorLike you do all the other demos 🙂
Appearance > Kleo Demo: 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
ModeratorTurn it off in Theme Options > Woo > Manage account in Buddypress
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’re not going to use Friends, you can turn it off in the BP settings.
If you are, but just want to hide the profile tab, you can use this css
#friends-personal-li {
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
ModeratorAs I said in the other topic, consult the plugin documentation. For the marketplace, you’ll have to find a plugin that will allow your users to post products. Social Articles doesnt do that.
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 create an api key in your themeforest account.
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
ModeratorDisable your plugins. Probably a conflict. You can disable them by renaming the folders. You can also google “Cannot call overloaded function for non-object” for possible solutions.
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
ModeratorUpdate kleo to 3.0.4
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 refer to the plugin documentation. Kleo suggest the plugin and provides styling, but doesnt offer tech support 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
ModeratorI cant. But send an email to dev@seventhqueen.com. They can probably help 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
ModeratorThat plugin hasnt been updated in over a year. Use the Kleo suggested Social Articles plugin
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 hid the top bar in your child css.
Also, you aren’t running the latest version of Kleo. Please update to 3.0.4
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
ModeratorBut you havent given me any account details. I need admin access to your 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
ModeratorReply with admin account and password. Click “Set as private reply”.
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
Moderatorrespond privately with admin 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
sharmstr
ModeratorSide menu is for the side menu, not the top menu. Theme options > Header > 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
ModeratorDo you have it turned on 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
ModeratorThat’s not Kleo. Ask on the woo forums.
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
ModeratorNormally you’d deactivate your plugins by renaming each plugin folder. Instead, rename the kleo folder. This will disable kleo. See if you can log in. If you can then disable all plugins using the admin. Once that’s done, change the kleo folder (that you renamed) back to kleo. Then go into themes and make sure you have kleo (or kleo child) active. Then start enabling your plugins one by one to find the one causing the issue.
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
ModeratorUpdate to Kleo 3.0.4. The new bp avatar routines didnt exist when Kleo 2.4.1 was released.
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
ModeratorUsing the default kleo image background settings as an example, you can click on the gear icon in visual composer to add custom css. Try this and change the link to your background image.
body { background-image: url("http://localhost:8080/wp/wp-content/themes/kleo/assets/img/bg-body.gif"); background-repeat: repeat; } </pre<
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