Forum Replies Created
-
Author
-
sharmstr
ModeratorThis should add the media section only
COPY CODEadd_filter( 'kleo_meta_boxes', 'kleo_my_metaboxes' ); function kleo_my_metaboxes( array $meta_boxes ) { $meta_boxes[] = array( 'id' => 'general_settings', 'title' => 'Theme General settings', 'pages' => array( 'my-custom-post' ), // Post type 'context' => 'normal', 'priority' => 'default', 'show_names' => true, // Show field names on the left 'fields' => array( array( 'name' => 'Media', 'desc' => '', 'id' => 'kleomedia', 'type' => 'tab' ), array( 'name' => 'Show media on post page', 'desc' => 'If you want to show image/gallery/video/audio before the post on single page', 'id' => $prefix . 'post_media_status', 'type' => 'select', 'options' => array( array('value' => '', 'name' => 'Default'), array('value' => '1', 'name' => 'Yes'), array('value' => '0', 'name' => 'No') ), 'value' => '' ), array( 'name' => 'Slider', 'desc' => 'Used when you select the Gallery format. Upload an image or enter an URL.', 'id' => $prefix . 'slider', 'type' => 'file_repeat', 'allow' => 'url' ), array( 'name' => 'Video oEmbed URL', 'desc' => 'Used when you select Video format. Enter a Youtube, Vimeo, Soundcloud, etc URL. See supported services at <a target="_blank" href="http://codex.wordpress.org/Embeds">http://codex.wordpress.org/Embeds</a>.', 'id' => $prefix . 'embed', 'type' => 'oembed', ), array( 'name' => 'Video Self hosted(mp4)', 'desc' => 'Used when you select Video format. Upload your MP4 video file. Setting a self hosted video will ignore Video oEmbed above.', 'id' => $prefix . 'video_mp4', 'type' => 'file', ), array( 'name' => 'Video Self hosted(ogv)', 'desc' => 'Used when you select Video format. Upload your OGV video file.', 'id' => $prefix . 'video_ogv', 'type' => 'file', ), array( 'name' => 'Video Self hosted(webm)', 'desc' => 'Used when you select Video format. Upload your WEBM video file.', 'id' => $prefix . 'video_webm', 'type' => 'file', ), array( 'name' => 'Video Self hosted Poster', 'desc' => 'Used to show before the video loads', 'id' => $prefix . 'video_poster', 'type' => 'file', ), array( 'name' => 'Audio', 'desc' => 'Used when you select Audio format. Upload your audio file', 'id' => $prefix . 'audio', 'type' => 'file', ) ) ); 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
ModeratorThat file is overwritten with every kleo update. That’s the point in using a 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
ModeratorCant do it now. Im on my phone.
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
ModeratorJust use the code within the kleo_metaboxes function. Not all of the code in that file.
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
December 8, 2015 at 17:08 in reply to: WPBakery Visual Composer , is causing a major plug in conflict #91893sharmstr
ModeratorYou probably need to increase your memory: http://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/ Try 256M
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 mean that the code has probably changed since it was posted to the topic. Go to /kleo/lib/metaboxes.php and make sure you get current code.
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, dont copy the code directly from that topic. Its a outdated. Copy the current function content from /kleo/lib/metaboxes.php
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 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
ModeratorYou’ll have to copy files like you did before and remove the titles.
/woocommerce/templates/single-product/tabs/additional-information.php (around line 21)
/woocommerce/templates/single-product/tabs/description.php (around line 21)
/woocommerce/templates/single-product-reviews.php (starting around line 22)However, I strongly suggest that you dont do this. You’ll have to constantly look for changes in these files when you update woo. Its a pain. I doubt additional info and description will change much, but reviews probably will and then you’ll contact me asking why they dont work. LOL 🙂
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
December 8, 2015 at 14:15 in reply to: Delete account in profile not working but activated in settings #91849sharmstr
ModeratorA couple of things
1 – The version of Kleo you’re on isnt BP 2.4 compatible. Upgrade to Kleo 3.1.3.
2 – Look for plugin conflicts
3 – 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
ModeratorSorry, I just realized the current password field doesnt show for admins. That’s why I didnt see it. In any case, looks like the developers of Buddypress really dont want you to change this: https://buddypress.org/support/topic/here-is-one-for-the-techies/
If you cant code it yourself, you’ll have to hire someone to do 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
ModeratorTheme Options > Blog > Display Meta: Add Author avatar
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 two options: http://sharmstr.com/woocommerce-tricks/
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
ModeratorLooks like the forum is back. How did you resolve 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
ModeratorYou wont find it in wc-template-hooks.php because its a Kleo hook, not a woo hook. Its called in /kleo/lib/plugin-woocommerce/config.php.
In any case, it works fine for me. Try changing after_setup_theme to init.
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 dont believe it has to be a number. Just needs to be unique
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 section and change the ID number to something nicer to look at 🙂
(and yes, it needs to be in the url. no way around 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
ModeratorThere’s the setup video: https://archived.seventhqueen.com/video-tutorials/kleo-quick-install-and-setup.html
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
ModeratorWhere are you seeing that exactly? The Buddypress Profile > Settings nor the WP Admin > Profile change password forms ask for your existing password.
Regardless, Kleo only stylizes the output of whatever plugin is generating that form. You’ll have to ask the plugin developers how to bypass the current password field.
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
Moderator🙂
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 translations: https://rtcamp.com/translate/projects/rtmedia
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 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
Moderatorhttps://buddypress.org/support/topic/wrong-member-count/
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 are showing active members. If you change order by alpha, then 15 will be shown. That means 6 arent active yet.
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 you have registration disabled. Doesnt make any sense to show that message if people cant actually sign up.
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
ModeratorHonestly, I dont know who that is. Contact dev@seventhqueen.com. I’ll assign this to one of the leads 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
ModeratorTry this instead
COPY CODEadd_action( 'after_setup_theme', 'remove_product_meta' ); function remove_product_meta() { remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40 ); remove_action( 'woocommerce_single_product_modal_summary', 'woocommerce_template_single_meta', 40 ); }
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 videos only show up if the following is true
1 – The post format = video
2 – The video link has been added to Theme General Settings > Media.So…
1 – By default custom post types do not have WP post format meta box. Do a google search to add it.
2 – Kleo only adds the Theme General Settings metaboxes to Pages, Posts and Portfolios. Do a search here for adding the metaboxes to your custom post type. Its been discussed.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
December 7, 2015 at 21:44 in reply to: Messages menu bar not showing on mobile responsive layout #91767sharmstr
ModeratorYou can contact dev@seventhqueen.com for custom work.
Also, I talked to developers about not making the notification on mobile reliant upon setting an icon for the menu item.
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
December 7, 2015 at 19:17 in reply to: Messages menu bar not showing on mobile responsive layout #91718sharmstr
ModeratorOkay, I think I know whats going on
1 – You are confusing ‘messages’ with ‘notifications’ since you’ve changed the default notification menu item name to messages.
2 – When I asked if you were talking about the buddypress profile menu, you said yes. But you were not.
3 – You needed to add an icon to the notification menu item for it to show up on mobile. I’ve added a meagaphone for you.
Let me know if its fixed now.
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
December 7, 2015 at 19:03 in reply to: Messages menu bar not showing on mobile responsive layout #91708sharmstr
ModeratorI see it fine on mobile
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’re 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
ModeratorFollow the directions here to setup your forums: https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum/
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
ModeratorSince its bundled with Kleo, you dont get a purchase code.
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_action( 'after_setup_theme', 'remove_product_meta' ); function remove_product_meta() { remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40 ); }
Woo has been known to change the priority of their actions and filters, so after an update if this no longer works, look for the add_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_meta’, 40 ) in /woocommerce/includes/wc-template-hooks.php and see if they changed ’40’ to another priority (number).
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 the jetpack related posts that you have enabled. Disable 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
ModeratorTry this instead. Make sure you undo your changes to the line height in theme options
COPY CODEbody.single-post .article-content { line-height: 25px !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
ModeratorDid you reset the line height 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
ModeratorThe site is telling you that with Buddyapp enabled? Or is it that you cant get wordpress to work at all?
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 is the buddypress profile. You already have it: http://wooamii.com/wordpress/members/wooamii/ If you want a full screen profile cover, enable it in Theme Options > 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
-
AuthorPosts