Forum Replies Created

Viewing 40 posts - 1,881 through 1,920 (of 11,328 total)
  • Author
  •  sharmstr
    Moderator

    I’m not seeing any issues with iPhone 6 and Galaxy 6. Perhaps you had connectivity issues from your phone and the required jquery scripts weren’t loading.

    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: Getting memorry error when installing plugins #94944
     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: Getting memorry error when installing plugins #94943
     sharmstr
    Moderator

    Increase your memory. As the Kleo docs indicate, you need at least 128M and probably 256M. At present, according to the error, you have the default 64M.

    http://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/”

    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: Portfolio gallery images don't link #94941
     sharmstr
    Moderator

    You can do that, but it will be overwritten with every update.

    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 page description is displaying incorrectly #94909
     sharmstr
    Moderator

    Yep. Known issue: https://archived.seventhqueen.com/forums/topic/product-descriptions-not-displaying-properly#post-91521

    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 on rtMedia #94908
     sharmstr
    Moderator

    No. You should ask the rtMedia guys first. At least that’s what I would do.

    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: Portfolio gallery images don't link #94900
     sharmstr
    Moderator

    You only have to click once if you click in the correct spot. This is usually not an issue, but in your case it is because your portfolio items are so small. The only thing that’s not linked is the excerpt, but again, because your items are so small, the excerpt takes up almost half of the item.

    Copy /kleo/page-parts/portfolio-masonry.php to your child theme /kleo-child/page-parts/portfolio-masonry.php and change this line (near the bottom)

    COPY CODE
    
     <?php echo kleo_excerpt( 60, false ); ?>
    

    to this

    COPY CODE
    
    <a href="<?php the_permalink();?>"><?php echo kleo_excerpt( 60, false ); ?></a>
    
    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: Italian .po/.mo file #94899
     sharmstr
    Moderator

    If you’re specifically referring to Kleo, then it hasn’t been translated to Italian yet. If you’d like to contribute an Italian translation, you can do so here: https://archived.seventhqueen.com/forums/topic/tranlation-contribution-for-kleo

    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 on rtMedia #94898
     sharmstr
    Moderator

    Do me a favor and see if it works with the WP 2015 Theme enabled. If you dont see it, then you’ll have to ask rtMedia to add that feature. The buddypress guys will tell you to take a hike 🙂 Now, if you do see it with the WP 2015 Theme enabled, let me know.

    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 on rtMedia #94894
     sharmstr
    Moderator

    Because those arent controlled by rtMedia.

    To see what I mean, you can disable rtMedia. You’ll still be able to upload a cover and profile image.

    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: Demo Content cannot be loaded into WordPress #94892
     sharmstr
    Moderator

    Post size and upload size probably arent the issue. The issue is probably allocated memory size. Put this in wp-config.php

    COPY CODE
    
    define( 'WP_MEMORY_LIMIT', '256M' );
    

    If that doesnt work, check your server error logs for the cause of the 500 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

     sharmstr
    Moderator

    You can change the menu and the footer content with the plugins I’ve linked you to. To have completely different layouts depending on a guest or logged in user, you would have to custom code that. If you want help with this, you can ask for a quote by contacting dev@seventhqueen.com.

    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

    Hiding the footer works on buddypress pages like activity and groups, but not on member profile pages because they arent actually pages. They are created in the backend using templates. However, you can use css to hide the footer on the profiles.

    .bp-user #footer {
    display: none;
    }

    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: Modif title #94883
     sharmstr
    Moderator

    Since you have it in buddyapp-child the changes wont be lost when you update Buddyapp. Buddyapp updates only change files in /themes/buddyapp, not /themes/buddyapp-child. That’s the whole point of using a child theme 🙂

    With that said, you should NOT put buddypress.php into your child theme. There are way too many functions in there and you’ll end up screwing up your site.

    To change the h1 to h2 in the bp titles, put this in your child theme’s functions.php file

    COPY CODE
    
    add_action( 'bp_init', 'change_bp_titles' );
    function change_bp_titles(){
        remove_action('bp_before_member_body', 'kleo_bp_member_title', 1);
        add_action('bp_before_member_body', 'custom_bp_member_title', 1);
        remove_action('bp_before_group_body', 'kleo_bp_group_title', 1);
        add_action('bp_before_group_body', 'custom_bp_group_title', 1);
    }
    
    function custom_bp_member_title() {
        ?>
        <div class="bp-title-section">
            <h2 class="bp-page-title"><?php echo ucfirst(bp_current_component());?></h2>
            <?php kleo_breadcrumb( array( 'container' => 'ol', 'separator' => '', 'show_browse' => false ) ); ?>
        </div>
        <?php
    }
    
    function custom_bp_group_title() {
        ?>
        <div class="bp-title-section">
            <h2 class="bp-page-title"><?php echo ucwords(str_replace('-', ' ', bp_current_action()));?></h2>
            <?php kleo_breadcrumb( array( 'container' => 'ol', 'separator' => '', 'show_browse' => false ) ); ?>
        </div>
        <?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

     sharmstr
    Moderator

    You can use the following plugins to hide/show menu items and widgets based on the users logged in status.

    https://wordpress.org/plugins/dynamic-widgets/
    https://wordpress.org/plugins/menu-items-visibility-control/

    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: Facebook Avatars not showing up for new users #94869
     sharmstr
    Moderator

    The code I gave you was to fix the My Account avatar in the menu. Obviously you need more than that because the avatar isnt showing up anywhere. They are doing their own filtering on the avatar. Can you do a test and see if the avatar shows up with the WP 2015 Theme enabled?

    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

    Awesome.

    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: Kleo Search – Custom Post Types #94855
     sharmstr
    Moderator

    I installed that plugin
    Created a new CPT called movies
    Added a new movie called “My First Movie”
    Created a new page and added the search form shortcode
    Switched to classic mode and change the search content to movie
    Saved the page and searched ‘first’
    It worked without issue.

    Keep in mind, once you click “view all results”, you will be taken to the WP search results page that shows posts and pages as well. The shortcode search context setting is only for the ajax results, not WP results.

    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: How can I change the font color for my Forums #94853
     sharmstr
    Moderator

    1 – try this in your quick css. change the color to whatever you want

    COPY CODE
    
    .status-closed .bbp-reply-content > p {
        color: #000 !important;
    }
    

    2 – There’s a sticky topic on this: https://archived.seventhqueen.com/forums/topic/what-plugin-are-you-using-to-show-ticket-status

    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 Butons #94851
     sharmstr
    Moderator

    Freeing up space will not solve the issue. You need more memory. Its also worrisome that godaddy couldnt figure this out. It was in the error logs that I was asking for since the very start 🙂

    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

    Instead of putting it in bp-custom.php, try it in your child theme’s functions.php 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

    in reply to: date counter down #94847
     sharmstr
    Moderator

    That’s an animated number counter, not a date counter. There are many plugins out there that will do this.

    https://wordpress.org/plugins/tags/countdown

    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: Theme options Not Working #94845
     sharmstr
    Moderator

    Refer to this and see if it solves your issue: https://archived.seventhqueen.com/forums/topic/fonts-not-changing#post-92002

    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: Facebook Avatars not showing up for new users #94844
     sharmstr
    Moderator

    At the bottom

    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: Changing the home page color #94843
     sharmstr
    Moderator

    You can use this css

    COPY CODE
    
    .home-page {
        background-color: red !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

     sharmstr
    Moderator

    That demo page has a custom logo set. Bring up the page in the editor, scroll down to Theme General Settings and delete the custom logo.

    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 Butons #94840
     sharmstr
    Moderator

    Its finally writting errors to the log file. It could just be that its not Spam Shield, but its too many plugins and you’re running out of memory

    [22-Dec-2015 12:54:05 UTC] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 65552 bytes) in /home/content/p3pnexwpnas09_data01/41/2617541/html/wp-includes/shortcodes.php on line 351

    I changed your wp-config.php file so that wp will use 256M of memory instead of 128M, but its not working. Probably because Godaddy doesnt allocate that much to you. Go back to them, give them the error above and ask them to increase your memory.

    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 Butons #94838
     sharmstr
    Moderator

    From the spam shield FAQ http://www.redsandmarketing.com/plugins/wp-spamshield/troubleshooting-guide/

    “Are you using free (or ultra-cheap) web hosting? If so, this may be the root of your issue because free hosts often disable certain hosting features that WordPress and plugins need to use. We don’t recommend using free web hosting. Paid web hosting plans generally offer much better performance and features anyway. (If you’re on a free or ultra-cheap web host, and you get a 500 error, it may be because you may not be allowed to use .htaccess files on your site, so please check this with your web host.)”

    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 Butons #94837
     sharmstr
    Moderator

    Its your spam shield plugin. I deactivated for a quick test and the portfolio loaded fine.

    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: Top bar Dropdown menu toggle issue #94771
     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: Top bar Dropdown menu toggle issue #94770
     sharmstr
    Moderator

    Try this

    COPY CODE
    
    .social-header.header-color {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    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: Facebook Avatars not showing up for new users #94763
     sharmstr
    Moderator

    Have a look at this: http://sharmstr.com/saving-importing-and-exporting-kleo-settings/

    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 Photo gallery of user #94762
     sharmstr
    Moderator

    That’s not possible without custom code. If you’d like to get a quote on that work, please contact dev@seventhqueen.com

    You also might want to do a quick search on the buddypres and rtmedia forums. Perhaps someone has sorted that out before.

    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 Butons #94756
     sharmstr
    Moderator

    I have no idea. But it is an issue.

    How can I view your server error logs?

    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: Facebook Avatars not showing up for new users #94753
     sharmstr
    Moderator

    You aren’t running the Kleo child theme. Anything I change now will be removed when you update.

    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: Edit Share This widget #94744
     sharmstr
    Moderator

    You’d have to rewrite the whole function to include a link to the page and to send to someone else.

    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: Parallax Question #94742
     sharmstr
    Moderator

    Here’s their documentation: http://www.themepunch.com/revslider-doc/welcome-slider-revolution/

    Or alternatively, download their demos and import the youtube one so you can see how they did it: https://archived.seventhqueen.com/documentation/kleo#revslider

    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

    Display media on post page.

    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: Facebook Avatars not showing up for new users #94731
     sharmstr
    Moderator

    Why did you restore? All you had to do is remove the code you added.

    Also, be sure to download the file before copying the code within it. Most browsers will screw up the single quotes (‘).

    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: Facebook Avatars not showing up for new users #94730
     sharmstr
    Moderator

    In your child theme’s functions.php 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

Viewing 40 posts - 1,881 through 1,920 (of 11,328 total)

Log in with your credentials

Forgot your details?