Forum Replies Created

Viewing 40 posts - 10,081 through 10,120 (of 11,328 total)
  • Author
  • in reply to: Improving KLEO site speed with caching plugin #34463
     sharmstr
    Moderator

    Thank you Thank you 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: Blog Post next buttons? #34461
     sharmstr
    Moderator

    Put this in your css

    COPY CODE
    
    .pagnation-sticky {
    display:none;
    }
    
    

    That will also remove it from the members profile. Let me know if that’s not what 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: Sticky Menu #34442
     sharmstr
    Moderator

    Can you see about fixing that 404 error? Let me know when its fixed.

    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: Targeting Clients #34437
     sharmstr
    Moderator

    cool. that’s what i figured you wanted. can you wait until tomorrow? i’ll tackle it over coffee.

    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: Custom VC broken with update #34432
     sharmstr
    Moderator

    Sorry for the dumb question. But are you saying you added custom shortcodes before the update and after the update they disappeared? By default my shortcodes will and should be empty. You wont see kleo codes in there.

    I tried to do a search for shortcodes missing errors, but came up a bit empty because I dont the exact error.

    Since you’re a seasoned WP user, I’ll assume you’ve tried disabling plugins to see if there is a conflict?

    Is debug giving any useful errors?

    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: Sticky Menu #34424
     sharmstr
    Moderator

    @meeekz – I dont think its your browswer or your cache. I’ve been able to recreate the condition. And there are other issues with the sticky menu and hitting refresh in Chrome (several have been reported here). One thing I did notice, is your site is throwing a 404 on
    http://www.10hopecommunity.com/wp-content/themes/kleo-child/maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js?ver=4.0

    Regardless, I dont see the artifact with FF. I’ve been meaning to look into the chrome issues when I had some free time. But since I’m only seeing issues when I hit f5 to refresh, it hasnt been high on my list since most of my users probably wont be doing that (I do it all day long during development). I’ll do a quick google search and see if I can come up with something.

    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: Targeting Clients #34417
     sharmstr
    Moderator

    The shortcode doesnt allow for it. Is that what you’re trying to do? Really, they are just custom post types, so something could be whipped up pretty easily. Let me know what your after and I’ll see about figuring 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: Sticky Menu #34407
     sharmstr
    Moderator

    @Kamal. Upon first visit of the page, you wont see the artifact. But scroll down just a bit and hit f5 to refresh. Then you’ll see 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: Change button size #34398
     sharmstr
    Moderator

    specify an extra class name (lets say you call it sidebarBtn) then use that class name in your child’s css

    COPY CODE
    
    .sidebarBtn {
    width: 200px;
    }
    
    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: Custom VC broken with update #34391
     sharmstr
    Moderator

    Strange. What version of 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: Shortcodes for stats #34371
     sharmstr
    Moderator

    The post count shortcode is in there under Kleo->Content. But there’s not flag for “today”. Total members has been in there for a long time.

    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

    The live results (the list that expands under the search bar) only shows posts like it should. Specifying “posts” doesnt control what wordpress shows on the search results page only what’s displayed in the live results.

    It should be easy enough to add with the pre_get_posts filter. I’ll work on that later and get back to 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: Css For Forum Widgets? #34361
     sharmstr
    Moderator

    Try this. It was a bit difficult because the bbpress widgets print out different divs. The below will make them look similar to the kleo recent post widget, but things like the date format and username are controlled by the widget itself, not through css

    COPY CODE
    
    [id^=bbp].widget li {
    	padding-bottom: 10px;
    	min-height: 50px;
    }
    [id^=bbp].widget .bbp-author-name {
    	//display: none;
    }
    [id^=bbp].widget .bbp-author-avatar {
     	clear: both;
     	display: inline-block;
      	float: left;
     	margin-bottom: 5px;
     	margin-right: 10px;
    }
    [id^=bbp].widget .bbp-author-avatar:empty {
        display: none;
    }
    [id^=bbp].widget .bbp-author-avatar img {
    	width: 40px;
    	height: 40px;
    	border-radius: 100%;
    }
    
    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: Featured posts on mobile are not clickable #34355
     sharmstr
    Moderator

    Interesting. I tested my site and they open fine. But yeah, not on yours. But if you press down and hold Chrome will ask you what you want to do with the link and I was able to open that way. So seems that they are recognized as links at least. Off the top of my head I’m not sure what can be causing this. Maybe abe knows. I’ll do poking around to see if I can figure this out. Would be easier if my site had this issue too.

    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: Cache on part of theme, buddypress and bbpress #34352
     sharmstr
    Moderator

    Its been awhile since I tested total cache, but the issue I had was with opening the + toggle on the buddypress profile 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: Homepage shop #34346
     sharmstr
    Moderator

    What mistake did I make? If you’re talking about my suggestion about using contact 7, I was telling you how I created the newsletter form at the bottom of this page: http://seventhqueen.com/themes/kleo/default-shop/

    I meant a link to your site so I can see what’s going on with rev slider.

    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: Homepage shop #34343
     sharmstr
    Moderator

    Can I see a link for number 1?

    Number two I can figure out. I’ll let abe answer that one.

    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: Cache on part of theme, buddypress and bbpress #34331
     sharmstr
    Moderator

    Awesome. Thank you! Once everything is sorted we need to combine everyones info into a single topic for easier reference.

    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: my blog disappeared #34330
     sharmstr
    Moderator

    Try resaving your permalinks wp admin -> settings -> permalinks. You dont have to change anything, just click save.

    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: Moving tags location #34326
     sharmstr
    Moderator

    I have a plugin called bbPress go to first unread post. That injects a ‘mark as read’ right next to the favorite and subscribe links. I took a quick look and I think its using the bbp_theme_after_topic_title filter to do it. That’s as far as I got.

    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: Buddypress Portfolio #34311
     sharmstr
    Moderator

    I came across a site the other day that allowed you to ‘shop’ for wordpress programmers. You could submit your requirements. Do a google search.

    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 default pages not installed #34307
     sharmstr
    Moderator

    No one is more happier than I to hear 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: Showing featured image at top of Page has GONE?! #34305
     sharmstr
    Moderator

    Well look at this. You’re not imagining things 🙂 : https://archived.seventhqueen.com/forums/topic/featured-image-disappeared-after-update#post-33078

    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: Moving tags location #34301
     sharmstr
    Moderator

    I tried to figure this out for you twice today :/ I know the call that creates the tag and where it lives, I’m just having a hard time injecting it where you want. Kleo doesnt touch that location. Its all handled by bbpress. Have you asked over there?

    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: Cache on part of theme, buddypress and bbpress #34299
     sharmstr
    Moderator

    splendor my friend. you might want to have a look at this: https://archived.seventhqueen.com/forums/topic/slow-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: Improving KLEO site speed with caching plugin #34298
     sharmstr
    Moderator

    Hey itt. Would you mind sharing your W3TC setup with us? I realize it will be different depending on what plugins are installed, but where I struggled and where others seem to struggle is making it work with Buddypress. I realize it took 3 days for you do get everything set and knowledge has value so its understandable if you dont want to.

    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: Buddypress Portfolio #34294
     sharmstr
    Moderator

    Do a search for a plugin, but I’m guessing you’ll have to hire someone to help you with that. Technically people can upload media already with rtMedia, but having it display on a single page like that you’ll struggle with. – shawn 🙂

    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 Menu Items #34283
     sharmstr
    Moderator

    Got it. I dont use a multi-site so I didnt know. Sorry :/

    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: Buddypress Portfolio #34282
     sharmstr
    Moderator

    oooo. Thats a lot of work. Check out this conversation that took place today. It might help you find your solution: https://archived.seventhqueen.com/forums/topic/showing-featured-image-at-top-of-page-has-gone#post-34161

    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 or add to login popup #34273
     sharmstr
    Moderator

    You can start at the top of this page: /kleo/page-parts/general-popups.php

    But some of the text is generated from functions that live elsewhere. It really depends on what part you want to change. If you do edit it, make sure you copy 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: Homepage shop #34269
     sharmstr
    Moderator

    Install Contact Form 7. Make a form. Copy the shortcode and put it in a text field. You can do that in Visual composer and even in a widget. Connect it to the newsletter software of your choice. I haven’t used it, but this plugin states “Post your Contact Form 7 submissions to popular third-party software such as MailChimp, Constant Contact, Zendesk, Google Docs and 20+ other software partners.” https://wordpress.org/plugins/contact-form-7-integrations/

    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 Menu Items #34255
     sharmstr
    Moderator

    And you have go into screen options when on the menus 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: Add Menu Items #34254
     sharmstr
    Moderator

    https://archived.seventhqueen.com/forums/search/screen+options/page/2

    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 Price with and without Tax #34246
     sharmstr
    Moderator

    Probably get a quicker/better response on the woocommerce 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: Add Menu Items #34245
     sharmstr
    Moderator

    screen options upper right hand corner.

    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: Improving KLEO site speed with caching plugin #34240
     sharmstr
    Moderator

    Thank you @itt. Great 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: Adding support for Spotify in audo posts #34235
     sharmstr
    Moderator

    Ok. I’ll play around more when I’m done with some other things. I think maybe I’ll have to remove it from fitvid call and put it in its own one. idk. 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

     sharmstr
    Moderator

    Hey Ben,

    I was a bit busy tracking down another issue earlier. But here are some screenshots to help show you what I mean. When you first import the code, the text is white so you dont see it. But if you hover your mouse over the column, you’ll see a way to edit the text (the green bar). I’ve put a red box over the pencil you need to click to set the background image and over the text area that has the title. To change the color of them, you’ll have to change it in the text editor. Hope this helps.

    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: Kleo admin-ajax.php cpu and memory load #34223
     sharmstr
    Moderator

    Well, god knows I tried to find where the t was being set in the code. But check out these calls. On closer inspection, its a weird carachter then t=0

    http://5.63.155.58/performance-status?info=30&sort=1&tp=0&prd=1&prd_b=&prd_e=&host=&script=&uri=&mode=0

    COPY CODE
    
    GET:/wp-admin/admin-ajax.php?action=kleo_bp_notifications_refresh¤t=0
    

    what the heck is this? ¤

    Could it have something to do with translations?

    (look at me edit. ahahaha)

    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 admin-ajax.php cpu and memory load #34219
     sharmstr
    Moderator

    AND there are any current=x request being made.

    (I need the ability to edit my replies. 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

Viewing 40 posts - 10,081 through 10,120 (of 11,328 total)

Log in with your credentials

Forgot your details?