Forum Replies Created

Viewing 40 posts - 41 through 80 (of 11,328 total)
  • Author
  • in reply to: >> Link to account #113527
     sharmstr
    Moderator

    I dont understand your question.

    If you add the Kleo button shortcode to a page, you can put ##profile_link##profile for the url to link the button to the users profile.

    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 news focus color #113525
     sharmstr
    Moderator

    .kleo-tabs .tabs-style-line > li.active > a {
    color: #fff;
    }
    .kleo-tabs .tabs-style-line > li.active {
    background-color: green;
    }

    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: How to implement the new registration page #113515
     sharmstr
    Moderator

    Its not a replacement for BP registration. Its merely a shortcode you can use to put a simple reg form on your 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: woocommerce, Single Product Page question #113502
     sharmstr
    Moderator

    Looks like its working to me. Is that not what you wanted? See attached.

    The issue with your css is

    COPY CODE
    
     width: 50%; !important;
    

    it should be

    COPY CODE
    
     width: 50% !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

    Attachments:
    You must be logged in to view attached files.
    in reply to: Slider Revolution purchase code #113375
     sharmstr
    Moderator

    You dont get a purchase code for bundled plugins.

    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: woocommerce, Single Product Page question #113368
     sharmstr
    Moderator

    Because you have errors in your styles file. When there are errors, everything below those lines do not get processed.

    COPY CODE
    
    /* This code helped keep the format on the Member Search Page for 3 rows across and then 2 rows across for the Following/Followers TAB Pages for proper formatting. */
    .following  #buddypress .kleo-isotope>.kleo-masonry-item, .following  #buddypress .kleo-isotope>li {
        width: 50%; !important;
    }
    
    .followers  #buddypress .kleo-isotope>.kleo-masonry-item, .followers  #buddypress .kleo-isotope>li {
        width: 50%; !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: woocommerce, Single Product Page question #113272
     sharmstr
    Moderator

    Try this

    COPY CODE
    
    .woocommerce .summary .product_meta {
    float: left;
    }
    
    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: After Update Mobile custom css not working #113270
     sharmstr
    Moderator

    Assuming you’re wanting to get rid of the extra space at the top… You’re setting padding:0 on the wrong thing. The 120px padding is on the outer container.

    Also, you shouldn’t put pound signs in extra class names.

    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: @username disappeared #113264
     sharmstr
    Moderator

    Because you turned off Activity in BP. That section displays their mention name which, in the BP developers minds, doesnt make any sense to show it if no one can use it AND will throw an error since mentions are disabled when you disable activity. It makes sense from their perspective because they didnt anticipate themes which allow you to hide the page title which shows the username. In any case, copy /kleo/buddypress/members/single/member-header.php (if you’re using the profile cover plugin) or /kleo/buddypress/members/single/cover-image-header.php (if you’re not using the plugin) to your child theme and add this line before the bp_is_active call

    COPY CODE
    
    <h4 class="user-nicename"><?php echo bp_core_get_username( bp_displayed_user_id() ); ?></h4><br>
    
    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: Content height in full row element #113258
     sharmstr
    Moderator

    The code you provided doesnt indicate that

    “<div class=”fb-page” data-href=”https://www.facebook.com/Dayroma-1646627195611119″ data-tabs=”timeline” data-width=”800″ data-height=”500″ data-small-header=”false” data-adapt-container-width=”true” data-hide-cover=”false” data-show-facepile=”true”>“

    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 to account #113145
     sharmstr
    Moderator

    You cant. You can use the kleo button shortcode, but not an 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

     sharmstr
    Moderator

    Cant be done without custom code which is beyond the scope of support. Perhaps you can do what you want using a custom Visual Composer Media Grid.

    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 news focus color #113138
     sharmstr
    Moderator

    Edit the shortcode and add an extra class name, then add the appropriate css to change the color. Example

    extra class name = highlight-red

    css

    COPY CODE
    
    .highlight-red .kleo-tabs .tabs-style-line > li.active > a {
        border-bottom-color: red;
    }
    
    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: Front Page Broken #112870
     sharmstr
    Moderator

    and probably k-elements from the looks of 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: Front Page Broken #112869
     sharmstr
    Moderator

    You havent installed/activated Visual Composer

    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: Content height in full row element #112859
     sharmstr
    Moderator

    Its because your fb widget is set to 500px and your twitter widget is set to 600px.

    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: Child theme and function-core.php file #112422
     sharmstr
    Moderator

    This isnt a bug.  Moving the topic….

    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: Child theme and function-core.php file #112420
     sharmstr
    Moderator

    You should not be moving the entire file.  The correct way is to just copy the function into your child theme and edit as you wish

     

    https://archived.seventhqueen.com/forums/topic/how-can-i-eliminate-archive-for-category-category-name-so-that-it-would-become-categoryname#post-94132

    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: modify text in template #112294
     sharmstr
    Moderator

    content-none.php.

    Or do it the correct way and translate 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

    Attachments:
    You must be logged in to view attached files.
     sharmstr
    Moderator

    https://archived.seventhqueen.com/forums/topic/hide-meta-tag#post-107592

    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: Paid membership pro #112291
     sharmstr
    Moderator

    If you mean remove them for the levels table, you cant. You need to create your own levels table using goPricing or the the price table shortcode in VC.

    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 modify menu colors #112290
     sharmstr
    Moderator

    You need to flush your goDaddy cache after you make changes.

    Your BP profile menu looks fine to me.

    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: Adding Login With Facebook To Register #112289
     sharmstr
    Moderator

    Enable FB in theme options > misc.

    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 news focus color #112287
     sharmstr
    Moderator

    Its transparent. Just change the row or column background color.

    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: Display author photo on posts #112249
     sharmstr
    Moderator

    Theme Options > Blog > 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: Outdated element, deprecated since version 4.6 #112197
     sharmstr
    Moderator

    @abe – Any ideas on this? I cant reproduce on any of my sites.

    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: Styling Membership Levels #112153
     sharmstr
    Moderator

    You cant edit it. It is dependent upon what you set in Theme Options > Memberships.

    If you want a custom table, you need to use Go Pricing plugin or the Pricing Table shortcode in VC

    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: Child theme not loading Them options correctly #112149
     sharmstr
    Moderator

    @abe – can you assist here?

    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: Outdated element, deprecated since version 4.6 #112148
     sharmstr
    Moderator

    Sounds like you havent updated k-elements?

    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: Landing tegister #112108
     sharmstr
    Moderator

    As of Kleo 4.0, appearance > kleo demo data.

    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: registration, login not working #112028
     sharmstr
    Moderator

    No problem. Common mistake. Even I 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: Importing Landing Page From KLEO Demo site #112012
     sharmstr
    Moderator

    I dont know. @abe?

    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: Child theme not loading Them options correctly #111972
     sharmstr
    Moderator

    Not if you update from Appearance > Install Plugins. I did it for 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: E learning demo homepage image #111970
     sharmstr
    Moderator

    Its a row background image. Click on the row settings, click on the Text & Background tab, then set your own image or change it to a video or color by selecting Background Style

    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: Importing Landing Page From KLEO Demo site #111968
     sharmstr
    Moderator

    Correct, because that’s not a demo page. However, you can import the top slider by going to Appearance > Kleo Demo Data. Once the slider is imported, you can add it to any page you want.

    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: Child theme not loading Them options correctly #111965
     sharmstr
    Moderator
    This reply has been set as private.
    in reply to: How to set up a mega menu #111960
     sharmstr
    Moderator

    Enable mega for the top level item. Each column should be a subitem of the top level. Each item within the column is a third level.

    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: Child theme not loading Them options correctly #111956
     sharmstr
    Moderator

    Its not letting me in. Please provide admin credentials.

    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: How to set up a mega menu #111874
     sharmstr
    Moderator

    That what the demo is. There is no difference.

    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 update notifications in Dashboard #111723
     sharmstr
    Moderator

    Did you put in an API key that you set up in your theme forest account or did you put in your 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

Viewing 40 posts - 41 through 80 (of 11,328 total)

Log in with your credentials

Forgot your details?