Forum Replies Created

Viewing 40 posts - 5,961 through 6,000 (of 11,328 total)
  • Author
  • in reply to: Go Pricing Preview #64333
     sharmstr
    Moderator

    idk

    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: Grid Elements Visual Composer #64330
     sharmstr
    Moderator

    It shows posts by default. Create posts and they will show up.

    However, you can change the shortcode to display pages or other items by click on build query in the shortcode 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

    Attachments:
    You must be logged in to view attached files.
    in reply to: Go Pricing Preview #64325
     sharmstr
    Moderator

    It does work. See my image in my last response. I gave you my suggestions as well which were

    Perhaps you have a plugin conflict or bad code in your tables.

    If it were me, I’d create a new table. Add a table name, table id and one column. Do not edit the column at all. Save it, then preview it. If you still only shows html, then its either a corrupt install or a plugin conflict. If it displays a blank column as attached, then you can probably assume there is something wrong with your first table.

    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: Customize profile page #64323
     sharmstr
    Moderator

    Install bp cover photo, then go to theme options > buddypress > enable full width profile header and turn it on.

    Not without changing the header template. If you know what you’re doing, you can copy /kleo/buddypress/members/single/member-header.php to your child theme and change the layout.

    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 underneath background image ? #64320
     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: Grid Elements Visual Composer #64319
     sharmstr
    Moderator

    Kleo posts is a shortcode that shows posts. If you dont have any posts, then it wont show anything. Add a test post and it will show up on the 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

     sharmstr
    Moderator

    Looks like it only adds it to activity updates, not forum updates, not post updates and not to comments. Its that way with the WP 2015 theme as well. So as I said before, if it plugin doesnt work perfectly were not going to fix it.

    You can try this.

    COPY CODE
    
    #buddypress .bp-reshare-img {
      display: inline;
    }
    
    #buddypress .bp-reshare-img.reshared, body.activity-permalink #buddypress .bp-reshare-img.reshared {
      background-position: 0 -15px;
    }
    
    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 'All Members' tab from vendor directory #64311
     sharmstr
    Moderator

    what vendor directory? was that added by a 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

    enable wp debugging. be sure to set display to true https://codex.wordpress.org/WP_DEBUG

    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 underneath background image ? #64308
     sharmstr
    Moderator

    Is it a page built with Visual Composer? If so, it could be the row 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

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

    It needs to be turned off in wp-config.php https://codex.wordpress.org/WP_DEBUG

    If the message still persists, start disabling plugins to find the culprit.

    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: Grid Elements Visual Composer #64306
     sharmstr
    Moderator

    Can I see a link to your 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: bbPress Mentions #64304
     sharmstr
    Moderator

    Try this instead. I dont really like it because it only checks to see if you are on a group page, not a group forums page.

    COPY CODE
    
    function custom_bbpress_maybe_load_mentions_scripts( $retval = false ) {
    	if ( function_exists( 'bbpress' ) && ( is_bbpress() || bp_is_group() ) ) {
    		$retval = true;
    	}
    	
    	return $retval;
    }
    add_filter( 'bp_activity_maybe_load_mentions_scripts', 'custom_bbpress_maybe_load_mentions_scripts' );
    
    
    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: Help with theme functions update #64303
     sharmstr
    Moderator

    You cant do that. They are separate.

    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: bbPress Mentions #64300
     sharmstr
    Moderator

    You can always test that by enabling the WP 2015 Theme temporarily to see if the code works, which I’ve done and it doesnt. 🙂

    Anyhow, there used to be a bp_is_group_forum() function in bp (well, its still there) that would tell you if you were on a group forum page. The problem is that it checks for the old type of group forums and doesnt work on newer installs. You just need to google for a way to determine if you’re on a group forum. That would be my guess anyway.

    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: bbPress Mentions #64293
     sharmstr
    Moderator

    Why aren’t you asking the person who wrote it?

    Anyhow, probably because the code has is_bbpress().

    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: Help with theme functions update #64292
     sharmstr
    Moderator

    No problem. I edited that old topic and added a message not to use the 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: Cannot Using other registration form plugin #64291
     sharmstr
    Moderator

    As far as I know, you cant use other forms for buddypress registration. Perhaps things have changed recently. Ask over on the buddypress 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: Go Pricing Preview #64288
     sharmstr
    Moderator

    It should show your table. Perhaps you have a plugin conflict or bad code in your tables. Have you searched on the go pricing site to see if others have encountered this issue?

    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: Help with theme functions update #64283
     sharmstr
    Moderator

    Man, that’s way old info. Kleo ended up adopting that feature into the theme. Get rid of whatever code you added for that, then go into Appearance > Menu > Kleo and add the notification menu item. If you dont see Kleo click on screen options in the upper right to enable 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: Cannot Using other registration form plugin #64282
     sharmstr
    Moderator

    Are you using Buddypress? Does it work with the 2015 theme enabled? The reason I ask is that buddypress uses its own registration form and I think that is your issue. Not Kleo. 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: Website development #64281
     sharmstr
    Moderator

    Send an email to 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

    in reply to: Grid Elements Visual Composer #64280
     sharmstr
    Moderator

    They come from the posts themselves. Wp Admin > Posts

    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

    It appears the search results are not displaying be relevancy. Its displaying by date; newest first. As you can see when you hit enter, there are more than 4 results. Because of this, it appears the ajax search is displaying 4 of the newest posts. I’ll take a look at 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: Grid Elements Visual Composer #64271
     sharmstr
    Moderator

    There are a few different grid type elements on the agency page. There’s a featured items grid and a post grid. There’s also a post carousel that one might call a grid. Tell me which one and I’ll try to help.

    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

    But does it work perfect with the 2015 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: Double profile #64241
     sharmstr
    Moderator

    is this the issue? https://archived.seventhqueen.com/forums/topic/two-profile-headers-are-showing

    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

    It hasnt been updated for 2 years. Have you tested in WP 2015 theme? I doubt anyone here will spend anytime getting a plugin that doesnt work to work with 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: Weird plus menu appearing? #64229
     sharmstr
    Moderator

    I cant figure it out. Does it happen in the main menu?

    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: Weird plus menu appearing? #64223
     sharmstr
    Moderator

    Before I dig into this, please upgrade to Kleo 3.0.1

    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 the likes #64219
     sharmstr
    Moderator

    That’s not from 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: Instagramy compatibility with KLEO #64216
     sharmstr
    Moderator

    Increase your memory. The more plugins you have, the more memory you need.

    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: Instagramy compatibility with KLEO #64214
     sharmstr
    Moderator

    no, that’s not enough. enable wp debugging and set display to 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: A few issues #64211
     sharmstr
    Moderator

    el_class=”extra-lrg-button kleo-show-login”

    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: Templates not appearing in Page Attributes #64208
     sharmstr
    Moderator

    Then deactivate those plugins to find which one is screwing it up. FYI – There is a side bar section, its just not showing anything.

    why is your site loading sweetdate files?

    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: A few issues #64207
     sharmstr
    Moderator

    1 – Those options dont work on buddypress pages. You need to set it in the backend. Give me a link and credentials and I’ll have a look for you.

    3 – I think its a css issue, but hard to know for sure without seeing the page: https://archived.seventhqueen.com/forums/topic/menu-plus-button-not-showing-up

    4 – If you only want it for those buttons, then add and extra class name to the button using Kleo Button Settings. Call it extra-lrg-button. Then add this css to either quick css in theme options > general, or to the page using the gear icon in VC

    .extra-lrg-button {
    padding: 50px 75px;
    font-size: 30px;
    }

    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: Issue with Infinite scrolling on masonry #64205
     sharmstr
    Moderator

    Kleo uses isotope for the masonry. Perhaps you can refer to this to fix your issues: http://isotope.metafizzy.co/v1/demos/infinite-scroll.html

    Or do a search here. 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: Weird plus menu appearing? #64197
     sharmstr
    Moderator

    credentials aren’t working.

    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: Issue with Infinite scrolling on masonry #64195
     sharmstr
    Moderator

    Try fixing all the jquery errors your site is throwing.

    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: Issue with Infinite scrolling on masonry #64194
     sharmstr
    Moderator

    Those are automatically calculated and set by the masonry script.

    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 - 5,961 through 6,000 (of 11,328 total)

Log in with your credentials

Forgot your details?