Forum Replies Created

Viewing 40 posts - 2,361 through 2,400 (of 11,328 total)
  • Author
  • in reply to: Cusom Post Type & Theme Setting Setting #91920
     sharmstr
    Moderator

    This should add the media section only

    COPY CODE
    
    add_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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Cusom Post Type & Theme Setting Setting #91910
     sharmstr
    Moderator

    That 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Cusom Post Type & Theme Setting Setting #91898
     sharmstr
    Moderator

    Cant 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Cusom Post Type & Theme Setting Setting #91896
     sharmstr
    Moderator

    Just 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

     sharmstr
    Moderator

    You 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Cusom Post Type & Theme Setting Setting #91885
     sharmstr
    Moderator

    I 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Cusom Post Type & Theme Setting Setting #91873
     sharmstr
    Moderator

    Also, 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Product Tabs instead of Accordion #91861
     sharmstr
    Moderator

    You’re welcome.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Product Tabs instead of Accordion #91857
     sharmstr
    Moderator

    You’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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

     sharmstr
    Moderator

    A 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Profile -> configuration – change password #91848
     sharmstr
    Moderator

    Sorry, 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Pofile picture under posts #91845
     sharmstr
    Moderator

    Theme 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Product Tabs instead of Accordion #91844
     sharmstr
    Moderator

    Here’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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Group Forums disaapeared #91810
     sharmstr
    Moderator

    Looks 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Remove Category and tags from Product Page #91809
     sharmstr
    Moderator

    You 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Accordion URL Issue #91807
     sharmstr
    Moderator

    Also, 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Accordion URL Issue #91806
     sharmstr
    Moderator

    Edit 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Site to Look Like Demo #91803
     sharmstr
    Moderator

    There’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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Profile -> configuration – change password #91802
     sharmstr
    Moderator

    Where 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Login with FaceBook Pop up #91798
     sharmstr
    Moderator

    🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: rtMedias Translations #91796
     sharmstr
    Moderator

    Here’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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Not showing all memebers in member page #91795
     sharmstr
    Moderator

    moving 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Not showing all memebers in member page #91793
     sharmstr
    Moderator

    https://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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Not showing all memebers in member page #91792
     sharmstr
    Moderator

    You 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Login with FaceBook Pop up #91791
     sharmstr
    Moderator

    Because 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: can get the starry night working on my site #91773
     sharmstr
    Moderator

    Honestly, 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Remove Category and tags from Product Page #91772
     sharmstr
    Moderator

    Try this instead

    COPY CODE
    
    add_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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Link on Kleo Posts Carousel #91770
     sharmstr
    Moderator

    The 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Messages menu bar not showing on mobile responsive layout #91767
     sharmstr
    Moderator

    You 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Messages menu bar not showing on mobile responsive layout #91718
     sharmstr
    Moderator

    Okay, 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Messages menu bar not showing on mobile responsive layout #91708
     sharmstr
    Moderator

    I 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 solution

    This 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.
    in reply to: Body line height #91644
     sharmstr
    Moderator

    You’re welcome.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: About forums #91638
     sharmstr
    Moderator

    Follow 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Revolution Slider Purchase Code #91637
     sharmstr
    Moderator

    Since 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Remove Category and tags from Product Page #91636
     sharmstr
    Moderator

    Put this in your child theme’s functions.php file.

    COPY CODE
    
    add_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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Remove White Space at Portfolio #91634
     sharmstr
    Moderator

    Its 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Body line height #91633
     sharmstr
    Moderator

    Try this instead. Make sure you undo your changes to the line height in theme options

    COPY CODE
    
    body.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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Body line height #91632
     sharmstr
    Moderator

    Did 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Install BuddyApp on localhost (XAMPP) #91572
     sharmstr
    Moderator

    The 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: install community template on my website #91570
     sharmstr
    Moderator

    That 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

Viewing 40 posts - 2,361 through 2,400 (of 11,328 total)

Log in with your credentials

Forgot your details?