Forum Replies Created

Viewing 40 posts - 10,801 through 10,840 (of 11,328 total)
  • Author
  • in reply to: changer #28879
     sharmstr
    Moderator

    The wordpress page editor. They are upgrade safe. WP-Admin -> Pages -> All Pages -> Home or Blog

    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

    Buddypress. 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

    What’s the plugin?

    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

    app.js has the jQuery for it and I’m assuming that’s where the conflict lies.

    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: Delete text #28858
     sharmstr
    Moderator

    WP Admin – Theme Options

    For WP pages/posts: Header options -> Main menu info

    For BuddyPress pages: BuddyPress -> Main menu info

    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: Hiding registration page sections #28841
     sharmstr
    Moderator

    Whoop!

    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: Add kleo meta box to custom post type #28806
     sharmstr
    Moderator

    @abe. This works great. At first I was thinking that it sucked to have to use all of that code just to add a custom post type, but what I realized is now I have complete control over what settings can be changed. My site will have hundreds of authors and I want to give them the ability to add media to their posts, but not change any of the page formatting. Plus I can remove the ‘upload/self hosted’ fields so they have to use youtube and vimeo videos. Thank you! 🙂

    COPY CODE
    
    
    add_filter( 'kleo_meta_boxes', 'kleo_my_metaboxes' );
    function kleo_my_metaboxes( array $meta_boxes ) {
     
        // Start with an underscore to hide fields from custom fields list
        $prefix = '_kleo_';
        
        $meta_boxes[] = array(
            'id'         => 'general_settings',
            'title'      => 'Story Media',
            'pages'      => array( 'fiction' ), // Post type
            'context'    => 'normal',
            'priority'   => 'default',
            'show_names' => true, // Show field names on the left
            'fields'     => array(
               
                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' => 'Media 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" rel="nofollow">http://codex.wordpress.org/Embeds</a>.',
                    'id'   => $prefix . 'embed',
                    'type' => 'oembed',
                )
            )
        );
        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: Add kleo meta box to custom post type #28805
     sharmstr
    Moderator

    Brilliant. Thank you.

    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: Archives pages for large categories #28804
     sharmstr
    Moderator

    I’ve been thinking about doing something like this as well. Ignore my plugin suggestion above. If you dont want to code your list, you can use https://wordpress.org/plugins/w4-post-list/. Its simple to use and I achieved what you were asking in less than 5 mins. Here’s what I did.

    – Create a list for a specific category:
    Add new
    Select “post” for list type
    Select ‘categories’ in Posts: Tax Query and put your category name in the terms box.
    When you save it, it will give you a shotcode.

    – Create the category specific page
    Copy /kleo/archive.php to /kleo-child/category-your category name.php.
    Delete everything between ‘before-wrap’ and ‘after-wrap’.
    Insert the list using the do shortcode command

    COPY CODE
     <?php echo do_shortcode('[postlist id="593"]'); ?>

    ** Change 593 to your list id

    That’s it. The plugin offers ways to style the list.

    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: Archives pages for large categories #28800
     sharmstr
    Moderator

    https://wordpress.org/plugins/simple-posts-list/screenshots/

    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: Add Forum Menu #28792
     sharmstr
    Moderator

    WP Admin -> Appearance -> Menus. If you dont see “Forums” on the left, turn it on by clicking on Screen Options in the upper right.

    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: Change Color of Buttons (Membership Pro & BuddyPress) #28779
     sharmstr
    Moderator

    For the terms, you can use this plugin https://wordpress.org/plugins/buddypress-xprofile-custom-fields-type/ I’m using it for 3 ‘accept’ boxes in my registration. In users profile fields, add ‘checkbox acceptance’ field to the Base group.

    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: Useful Plugins #28747
     sharmstr
    Moderator

    Its having a bit of an issue with BuddyPress pages. New plugin so its going to go through some growing pains. The poor developer has no idea who I am yet. 🙂 I’ll start a new topic with Kleo specific hacks for plugin soon.

    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: Title missing on Author and Category archive pages #28705
     sharmstr
    Moderator

    Excellent. Thanks!

    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: Useful Plugins #28671
     sharmstr
    Moderator

    @splendor – I have a private site and dont need/want any seo optimization and all the other stuff that comes with that plugin. I need analytic data at the page level for my authors (est 300 of them), not the site level. But thank you for the suggestion.

    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: Useful Plugins #28655
     sharmstr
    Moderator

    Just purchased Analytify (http://wp-analytify.com/) Its a new plugin with a ton of potential. It allows you to view Google Analytics in the Admin, but unlike other GA plugins it also displays them in the page/post edit screens and on the page/post itself. The code is well written and support has been responsive (you know me, I cant stay away from customizing anything.) Should fit nicely into the Author metadata.

    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: Friends page not working #28653
     sharmstr
    Moderator

    Hi Catalin, You’ll see if you go to that page that it says there should be 2 friends but they aren’t being displayed. If you inspect the page, you’ll see the jQuery error.

    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: Friends page not working #28608
     sharmstr
    Moderator

    Another undefined is not a function error. That’s two different reports of that today. I wonder what’s going on?

    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: Photos no Open Effect #28604
     sharmstr
    Moderator

    I’m not a Kleo support person. I’m just a user like you trying to help. I would try uploading again. There only differences I can see in our source code is the loading of PrettyPhoto. I’m not sure its causing it, but since they are both lightbox type plugins, I thought it could be the problem.

    I guess you’ll have to wait until the Kleo team responds. Sorry I couldnt help figure it out.

    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: Photos no Open Effect #28602
     sharmstr
    Moderator

    Sorry, I’m just digging through the code for you. No, you dont need to install PrettyPhoto. It looks like PrettyPhoto should only be loading if you are using the Front End Editor in Visual Composer. Can you try disabling VC to see if that works?

    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: Photos no Open Effect #28600
     sharmstr
    Moderator

    Looks like prettyphoto is part k-elements, but its not loading at all on my site.

    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: Photos no Open Effect #28599
     sharmstr
    Moderator

    Why is the prettyphoto plugin loading? Maybe that’s your conflict?

    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: Photos no Open Effect #28590
     sharmstr
    Moderator

    Have you disabled other plugins to isolate the conflict?

    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: Photos no Open Effect #28586
     sharmstr
    Moderator

    Do you have lightbox turned on? wp-admin -> rtMedia -> Display -> Use lightbox to display media

    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: add "search forums" to forum search box #28537
     sharmstr
    Moderator

    pls mark resolved.

    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: add "search forums" to forum search box #28534
     sharmstr
    Moderator

    Add placeholder=”Search Forums” to the text filed in /kleo/bbpress/form-search.php and save it to your 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: Can't get to submit with long topic suggestion list #28519
     sharmstr
    Moderator

    A bit more info. The livesearch div is created (where the suggestions would display) but script isnt loaded when in the group context. Contact the developers about 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: Can't get to submit with long topic suggestion list #28518
     sharmstr
    Moderator

    @russellkhan. That’s it. It doesnt work with group forums.

    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't get to submit with long topic suggestion list #28516
     sharmstr
    Moderator

    @russellkhan Worked right out of the box for me. No problem. Looks like all of your forums are tied to groups. Maybe it doesn’t work with group forums? Just a guess.

    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't get to submit with long topic suggestion list #28515
     sharmstr
    Moderator

    @russellkhan I dont have the plugin installed on my site. Give me a sec and I’ll do that 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: Login and Membership #28504
     sharmstr
    Moderator

    The screenshot I attached was from win7 / chrome. My iPad isnt charged so I cant check that for you. I have no idea whats going on. Have you tried clearing your browser cache? Sorry that I can offer a solution for you. Hopefully the support team can.

    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: VC Accordion #28497
     sharmstr
    Moderator

    Just hit your tab key once.

    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 and Membership #28495
     sharmstr
    Moderator

    Yes they do. And they work.

    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: VC Accordion #28491
     sharmstr
    Moderator

    If you’re talking about the fact that sometimes the text editor doesnt display and when it does the text is white so you can’t read it…. then I’m having that problem too. I wonder if it has something to do with WP 4. I’ve seen a few issues with VC since WP 4 install.

    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 and Membership #28490
     sharmstr
    Moderator

    Can you explain what you mean by “I have added login and register into my topbar, however they do not show up.”? Are you saying the menu items dont appear or are you saying that the login modal doesn’t pop up?

    If the menu items aren’t there, make sure you have the menu you’ve named “top” configured to be your top menu. WP-Admin -> Appearance -> Menus -> Manage Locations. Top Menu should be set to Top.

    If the login modal is not popping up, look for jQuery errors.

    If you’d like to provide a link, that would be helpful.

    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: Background not showing #28488
     sharmstr
    Moderator

    Anytime. Happy to help. Can you mark this resolved?

    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: Background not showing #28484
     sharmstr
    Moderator

    It depends. Are you using a caching plugin? Is you host caching the site for you? If its a plugin, then obviously disable it. But if your host is doing it, then you’ll have to do it in your host control panel.

    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: Hide forums title on static forum index page #28473
     sharmstr
    Moderator

    because it will be removed if the theme is updated

    Not if you’re using the 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: Profile Cover Plugin #28470
     sharmstr
    Moderator

    Yay! I’ll move on to something else then. 🙂

    Wait. 2.0? Congrats. You guys have come a long way.

    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: Background not showing #28465
     sharmstr
    Moderator

    Its best to turn caching off when you’re still in configuration and dev stage.

    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 - 10,801 through 10,840 (of 11,328 total)

Log in with your credentials

Forgot your details?