Forum Replies Created

Viewing 40 posts - 9,201 through 9,240 (of 11,328 total)
  • Author
  • in reply to: BuddyPress Like v.0.1.9 #42161
     sharmstr
    Moderator

    For whatever reason (he meant to do it or it was an accident) he removed the line that loads jquery-ui-dialog. I added it back and it appears to have fixed the issue.

    Open up /buddypress-like/includes/scripts.php and add the following around line 18, just below the enqueue bplike-jquery line.

    COPY CODE
    
    wp_enqueue_script('jquery-ui-dialog');
    
    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 Like v.0.1.9 #42155
     sharmstr
    Moderator

    So, I used this plugin for awhile about a year ago or so. I had to fix several jQuery issues in order for it to work, so I do have some experience with it.

    Anyhow I just installed it on my test site and it seemed to work. But after navigating away from the activity page, then going back to the activity page, the activity stream wouldn’t load. So that tells me that if there something that was “liked” on the page, it breaks the page.

    Turns out that the activity feed is actually there, you just can’t see it because his script is throwing an error. When a page throws a jQuery error, it stops processing the rest of the jQuery code that the page might need. The code its not processing is the Kleo code that sets the opacity of the feed from 0 to whatever is supposed to be. If I fix that bit of css (set the opacity manually), I can see the feed.

    So, the error that its throwing is

    “Uncaught TypeError: undefined is not a function.” I had to unminify his jQuery to see what bit of code had the issue and its this “jQuery(#dialog”).dialog({” on line 42

    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 Like v.0.1.9 #42137
     sharmstr
    Moderator

    What exactly is the problem?

    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: Logo in header won't centre #42133
     sharmstr
    Moderator

    Its hard to help without being able to see the page and the css rules its following. By any chance were you given (or did you add) any css to center the logo before there was a standard way of doing it in Kleo? If so, please remove it. That could be your 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

    in reply to: Gallery feed of user uploads #42128
     sharmstr
    Moderator

    The ability to upload media to a users profile is handled by rtMedia. Their pro version of their plugin has exactly what you’re looking for: http://docs.rtcamp.com/rtmedia/addons/rtmedia-pro/features/anywhere-gallery/

    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 activity on member page #42114
     sharmstr
    Moderator

    Did you clear your server cache after installing the ssl cert?

    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 activity on member page #42081
     sharmstr
    Moderator

    You can inspect the page and look at the network tab to see all the resources being loaded.

    That its a buddypress error. You should ask them 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: How to change the divider type of the accordion? #42080
     sharmstr
    Moderator

    Not easily done because its not a ‘divider’, its a border. You can, however, style the border

    COPY CODE
    
    .wpb_wrapper .panel+.panel {
    border-bottom-style: double;
    border-bottom-width: 3px;
    }
    
    
    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: Left Thumb Post Style #42079
     sharmstr
    Moderator

    Theme options – Blog – Display type

    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: Page Publication #42078
     sharmstr
    Moderator

    Try resaving your permalinks wp admin – settings – permalinks – 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

     sharmstr
    Moderator

    double check it. Make sure it didn’t paste with fancy quotes… one that slant left and right. You an see here that it works as expected.

    http://dev.sharmstr.com/members/sharmstr/

    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 style of Main Menu #42074
     sharmstr
    Moderator

    The line is a drop shadow of the li. The li is as tall as ul, which is as tall as the menu section. Reducing the main menu height will close that gap. But as stated earlier, it also reduces the logo height.

    So, because the li is the height of the menu and the highlight is a drop shadow of the top of the li, there’s no way to move that highlight down. You can achieve something similar by adding a text-decoration to the menu item (text) on hover

    COPY CODE
    
    .kleo-main-header .nav > li > a:hover {
    box-shadow: none !important;
    text-decoration: overline;
    }
    
    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 style of Main Menu #42069
     sharmstr
    Moderator

    Okay. You weren’t specific on the “border” so I assumed you meant the border that goes across the top when you have the top menu enabled.

    So you dont want to reduce the gap between the main and top menu, only between the menu items and the hover highlight?

    Sorry for not being clear about the “tab” look you want. You will have to add custom css to the li of the #menu-main ul. The menu is not a kleo specific menu. Its a standard WP menu that kleo has stylized. So do a google search for different ways to stylize the menu. There’s probably even plugins for 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 style of Main Menu #42062
     sharmstr
    Moderator

    And please only ask your question in one topic. There are few of us here answer questions here and we dont want to duplicate the effort. 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: Change style of Main Menu #42061
     sharmstr
    Moderator

    Hello

    You can easily reduce the gap size by setting a smaller menu height in theme options – header options – main menu height. Keep in mind that this will also reduce your logo size. If you want to keep the logo size (actually the whole section height and nudge the menu up), try this

    COPY CODE
    
    .collapse.navbar-collapse.nav-collapse {
    margin-top: -20px;
    }
    

    Regarding the border above the main menu, that’s actually the bottom border of the top menu. Each menu item is an li of the #menu-main ul.

    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: Using Portfolio As Homepage #42048
     sharmstr
    Moderator

    Thanks @abe. *high five*

    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: Just bought VC #42032
     sharmstr
    Moderator

    http://vc.wpbakery.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

    All of that was built with Visual Composer. You should read up on how that works. It will take a few hours for you to get used to. Even though they have a front end editor, I never use it. The backend editor has always been more reliable. Read the Kleo documentation. They have built in many many ways to customize the theme (at the site level and down to the page level). Biggest issues is people dont know / forget that most of the configuration you can do on the backend (site level) can also be done at the page level. If something isnt working as expected on a page, that’s probably why.

    And search search 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

     sharmstr
    Moderator

    I’d also like to clarify that you can make it look a lot better than my sample. I was merely showing you how easy it is to add functionality. 😀

    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: Problem with Visual Composer #41988
     sharmstr
    Moderator

    VC Fix? There is no known issue with VC. My guess is that your site is too slow. I had similar issues with VC and a ton of other things when I was hosting with godaddy. Move your site. You’ll be happy you did.

    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

    Hello. I’m going to jump in here, though you’ll receive a better answer from the Kleo team. I’m only jumping in because I know Abe is working really hard on a new plugin for the member profiles that everyone has been asking for.

    Okay. So I looked at your first example. Those ‘news feeds’ look like nothing more than posts. Is that correct? There’s several ways to show the latest posts on a page. In looking for examples on the kleo demo site, I just realized that there isnt many examples of a page with posts.

    If we break the page into sections and their corresponding VC shortcodes.

    Top Menu – Kleo has it
    Transparent main menu that’s sticky. Kleo has it.
    Revolution Slider – No problem.
    Logos Banner: Row split into 4 sections with the single image shortcode in each one.
    Left 2/3 Posts: Post grid shortcode
    Right 1/3: Twitter feed (i’m sure there is a plugin for that), Some text fields with styled headers & video player shortcode
    Row split into 3 columns each with a video player shortcode
    Another row split into 3 columns with video.

    Its a standard stuff with kleo. This took me less than 5 minutes. Its not complete, but should give you an idea: http://dev.sharmstr.com/news-feed-example/

    Look at the kleo demo site using your phone and see for yourself.

    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: Handing background slides #41984
     sharmstr
    Moderator

    No problem. I dont know what it would take to add that functionality, but feel free to add it to the feature request thread so the Kleo team gets eyes on 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: Problem with Visual Composer #41983
     sharmstr
    Moderator

    Do you have debugging turned on and set to display? If so, they are just warning and should go away if you turn debugging display off. The menu actually works from what I was able to see.

    The actual warning is not from breadcrumbs, its from the implode on the menu classes.

    COPY CODE
    
    $css_target = preg_match( '/\skleo-(.*)-nav/', implode( ' ', $item->classes), $matches );
    

    Also, if it were me, I’d clean up all of the kleo installs and run kleo from a folder called kleo.

    I went back in this morning, but its impossible to do any testing because your site keeps timing out… at least from my location.

    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: Out of Memory Problem #41977
     sharmstr
    Moderator

    Its a problem with your that plugin. Contact them. http://codecanyon.net/item/ultimate-addons-for-visual-composer/6892199

    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: Logo is bleeding over top line #41976
     sharmstr
    Moderator

    It will if you spell important correctly.

    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: Handing background slides #41975
     sharmstr
    Moderator

    Ok. I remember looking into a similar request a while back. I couldn’t find an easy way to do it with rev slider. I’m sure its possible. Here’s the other thread that doesnt have much info https://archived.seventhqueen.com/forums/topic/full-width-backround-slider

    As I said, you can use the slider shortcode in the php files. So, if it were me, I’d probably start buy building a simple page using VC that utilizes a video background. http://seventhqueen.com/themes/kleo/portfolio/video-background-header/ If you look at the source code, the video is a container with a class of video-wrap. The css for video-wrap uses a z-index of 0 which means its in the background. It also sets some coordinates for its position on the page using left and top. The div with the information has a z-index of 1 which puts it on top of the video div. Anyhow, I’d try wrapping the shortcode in a div like so

    COPY CODE
    
    <div class="video-wrap">
    <?php putRevSlider("elearning_homepage") ?>
    </div>
    

    If that got me close, then I would continue to tweak it to make it work.

    Having the pages show a slider next to the content like in your example is much easier so you dont have to worry about positioning.

    The template file you might want to start with is /page-parts/general-after-wrap.php. I think…

    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 activity on member page #41973
     sharmstr
    Moderator

    admin-ajax.php is a WP utility file, which means that tons of things use it. WP, BP, BBP, Kleo… the list goes on. You can change the live notification interval or disable it all together, you’ll need to look at what process/function is the slow one. Do a search google search for more info on that.

    You can try one of the built in themes to see if you still have slowness. My guess is that you will. There’s a thread on here about caching using W3TC. Its a pain to configure, but once you do, you’ll be happier.

    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: Menu Shortcuts #41927
     sharmstr
    Moderator

    You dont have a members page associated with Buddypress.

    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: Menu Shortcuts #41925
     sharmstr
    Moderator

    Yes, its private. We need admin. Create a temp account that you can disable later.

    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 TO CART button color #41922
     sharmstr
    Moderator

    try this

    COPY CODE
    
    .woocommerce .main-color .single_add_to_cart_button.button {
    background-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: Pagination with woo commerce products #41920
     sharmstr
    Moderator

    Its actually there. Your css is hiding it. This is causing it

    COPY CODE
    
    /****** HIDE SLIDE-OUT SIDE MENU *****/
    
    nav {
      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: Integrate chat in side menu #41917
     sharmstr
    Moderator

    If they have a shortcode you can put it in wp admin – theme options – side menu: either before or after menu text sections.

    Then depending on its size, you can adjust the side bar width. Do a search here for how 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: Handing background slides #41904
     sharmstr
    Moderator

    I’m a bit confused. Do you just want a slider or does it have to be a background slider? You can add a slider anywhere but adding the shortcode to the template files. If you can be more specific and provide an example, I might be able to help.

    https://archived.seventhqueen.com/forums/topic/profile-cover-any-news

    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 trouble on top #41901
     sharmstr
    Moderator

    Oh and also add “Live Notifications” from that section.

    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 trouble on top #41897
     sharmstr
    Moderator

    Look at this screenshot

    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: Menu Shortcuts #41893
     sharmstr
    Moderator

    Can you respond privately with a link and credentials so I can see whats 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: Menu Shortcuts #41877
     sharmstr
    Moderator

    Silly question, but do you have buddypress active? If so, try resaving your permalinks WP Admin – Settings – Permalinks. Make sure you have something other than the default and 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: Product Category Sorting #41874
     sharmstr
    Moderator

    I can’t reproduce this problem. Please respond.

    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: Menu Shortcuts #41872
     sharmstr
    Moderator

    Are you doing this?

    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: Menu Shortcuts #41870
     sharmstr
    Moderator

    Click on screen options in the upper right hand corner and 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

Viewing 40 posts - 9,201 through 9,240 (of 11,328 total)

Log in with your credentials

Forgot your details?