Forum Replies Created

Viewing 40 posts - 10,201 through 10,240 (of 11,328 total)
  • Author
  • in reply to: Kleo not working with PHP 5.3? #33816
     sharmstr
    Moderator

    Also, if you have a plugin that doesnt work and throws a jquery error before the jquery for the tab is loaded, then it wont open. Inspect the page for 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: Kleo not working with PHP 5.3? #33815
     sharmstr
    Moderator

    I’m on 5.3.29. For the 404, re-save your permalinks. You dont have to edit them, 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: Unable to center or justify left buttons in a column #33814
     sharmstr
    Moderator

    I’m not surprised because I dont work 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: Adding support for Spotify in audo posts #33808
     sharmstr
    Moderator

    Hey Abe, sorry to bring back such an old thread. How can I specify the height of a spotify playlist in a post? I still like how it stretches the width but in doing so, it makes the height extremely tall.

    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: Disable WP Dashboard Access For Users #33804
     sharmstr
    Moderator

    You’re sort of asking two things here.

    1 – Remove the link.

    2 – Block access to the backend.

    If someone is familiar with wordpress, they can still get to the backend even if you’ve removed the link to it.

    Those are both WP specific questions and there are plugins for both. With that said, here’s some code to get you started.

    1 – To remove the link you use $wp_admin_bar->remove_menu() in your functions.php file. Example

    COPY CODE
    
    function remove_admin_bar_links() {
    	global $wp_admin_bar;
    	$wp_admin_bar->remove_menu('wp-logo');
    	$wp_admin_bar->remove_menu('site-name');
    	$wp_admin_bar->remove_menu('new-content');
    }
    add_action( 'wp_before_admin_bar_render', 'remove_admin_bar_links' );
    

    2 – I personally use the adminimize plugin to control what is displayed based on user type. https://wordpress.org/plugins/adminimize/ Its granular which makes it a bit overwhelming and probably overkill for your requirement. Do a search for either a code snippet or a simple 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

    in reply to: How to disable default contact info #33803
     sharmstr
    Moderator

    That’s the point I was making to the kleo team (not you)… that its not obvious 🙂 Glad you got it sorted though.

    Can you mark resolved please?

    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: Testimonials #33799
     sharmstr
    Moderator

    Yeah, it should be. Can you get to: wp-admin/edit.php?post_type=kleo-testimonials ?

    I’ve seen this happen before and ended up being a plugin conflict or a corrupt plugin. Not the easiest thing to find, but disable all plugins and see if it appears. If it does, start enabling plugins one by one, making sure to check to see if its still there after each one. That will help you 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: How to disable default contact info #33798
     sharmstr
    Moderator

    #1 asked question…

    Theme Options -> Buddypress


    @abe
    – can we do anything about having a single place to control main menu info for both wp and buddypress pages?

    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 style topbar with background color & font color? #33792
     sharmstr
    Moderator

    Ahhh. Right. Okay. Glad you sorted 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 style topbar with background color & font color? #33789
     sharmstr
    Moderator

    Hello. Its been discussed several times. Searching would have taken you here: https://archived.seventhqueen.com/forums/topic/is-it-possible-to-change-top-menu-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: Homepage shop #33787
     sharmstr
    Moderator

    1 – You need to add a slider. I suggest importing the home-default slider since its very similar to the one used on the shop demo. You can import it from the demo folder in the theme download zip

    3 – There are few options that have been discussed https://archived.seventhqueen.com/forums/search?bbp_search=newsletter&bbp_search_forum_id=10549

    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: Plugin issues with jobs expert #33786
     sharmstr
    Moderator

    Excellent. Thanks for letting us 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: Unable to center or justify left buttons in a column #33782
     sharmstr
    Moderator

    Instead of going into the row settings, go into the column setting (pencil above the 3 buttons you have). Then set an Extra class name. Lets say you called it center-this. Then in your child css put

    COPY CODE
    
    .center-this {
    text-align: center;
    }
    

    https://wordpress.org/plugins/bbpress-auto-suggest-topics-based-on-new-topic-title/
    https://archived.seventhqueen.com/forums/topic/bbpress-live-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

    It happens. But I’ll admit that I had a good laugh at “Do I need to edit a .php page?” Could you imagine if that was the case? Ha!

    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 create group like the demo #33770
     sharmstr
    Moderator

    “On” is the default until you click “show less”. Then it will be “off” on every group until you click “show more”. In other words, it remembers that you clicked “show less”.

    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 with Search Feature on Home Page #33767
     sharmstr
    Moderator

    You should be able to add the search from shortcode to a layer on the slide. It works for buttons so I think it should work for forms.

    Build the search from using VC, then switch to classic mode and copy the form shortcode. Should be similar to this

    COPY CODE
    
    
    [kleo_search_form form_style="transparent" type="both" context="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: Post type doesn't works #33764
     sharmstr
    Moderator

    I’m not able to reproduce this, so I personally cant help. Perhaps if you reply privately with credentials to access your site, the support team will be able to assist.

    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

    hahahahaha. BOO!

    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 Fix for "selected" subnav item in buddypress #33759
     sharmstr
    Moderator

    Hmmm. I just looked at this and “selected” is a valid indicator and my site and the demo site have the submenus darker when selected. In other words, I didnt need your fix.

    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

    Hi Sunny, Try clearing the cache on your phone. I had to do it for the new live search in the 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

     sharmstr
    Moderator

    theme options -> layout settings -> TO email

    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: Post type doesn't works #33755
     sharmstr
    Moderator

    Can we see examples of what the issue is?

    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: fatal error message #33753
     sharmstr
    Moderator

    You need k-elements 2.1.1: https://archived.seventhqueen.com/forums/topic/fatal-error-message#post-32651

    k-elements is basically the theme’s shortcodes.

    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: Need someone to help me move to kleo #33726
     sharmstr
    Moderator

    WPEngine has staging built in. Create a staging site, add kleo and customize to your liking. Then push it to production. Easy and downtime is only as long as it takes for the files to copy over to the live site.

    http://wpengine.com/support/staging/

    As far as not being a developer, well there’s 1600 topics in this forum. Search here for tweaks you need or ask.

    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
    COPY CODE
    
    a.dropdown-toggle:after {
    content: "more";
    }
    
    
    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 Fix for "selected" subnav item in buddypress #33722
     sharmstr
    Moderator

    Nice *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: I can't create a new topics on buddypress #33718
     sharmstr
    Moderator

    Like I said, that’s a stick here: 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: I can't create a new topics on buddypress #33716
     sharmstr
    Moderator

    Its a sticky topic 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: I can't create a new topics on buddypress #33712
     sharmstr
    Moderator

    Put a link to your support forum in the main menu. Or you can put it in the sidebar. Many options.

    The kleo team has a link in their menu… look up 🙂

    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 video link iframe on profile member? #33709
     sharmstr
    Moderator

    Also, I dont think this is the plugin that you want to use.

    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: I can't create a new topics on buddypress #33708
     sharmstr
    Moderator

    Forgot to add: In order to start a new topic, you have to be in the actual 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: I can't create a new topics on buddypress #33707
     sharmstr
    Moderator

    That section will never show you a create topic form. It only displays a list of all of their forum activity (topics started, Replies created, Favorites and Subscriptions).

    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 video link iframe on profile member? #33706
     sharmstr
    Moderator

    Did you set up the “Links” page?

    Additional Activation Steps:

    These additional steps are required to get this plugin working after the first activation.

    Click on Settings under the Dashboard menu.
    Click on BuddyPress under the Settings menu.
    Click the Pages tab on the BuddyPress settings screen.
    Under directories, assign a page to the Links component by selecting an existing page, or creating a new one.
    Click the Save button.
    The Links item in your site navigation should now load the links component!

    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: Upload media problem #33702
     sharmstr
    Moderator

    Sweet.

    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 video link iframe on profile member? #33701
     sharmstr
    Moderator

    Buddypress Portfolio hasn’t been updated since may of 2012 (not going to help with that)

    Buddypress links: I just installed it and it appears to be working fine. Please describe your issue in detail.

    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 video link iframe on profile member? #33697
     sharmstr
    Moderator

    No problem. If you need help with a plugin, update this topic and I’ll see if I can help. Good luck.

    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 video link iframe on profile member? #33693
     sharmstr
    Moderator

    That’s all handled by rtMedia and according the them they are planning to support external media, but its not available yet. https://rtcamp.com/rtmedia/faq/#q9

    So, if this is something you want now, you can disable video uploads (but that would be site wide) and either find a plugin that will add videos to member profiles or custom code it yourself. I just did a quick google search and there seems to be a few options for videos in profiles.

    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: Full Page Background #33692
     sharmstr
    Moderator

    Those demo pages are set in the page settings for that particualr page.

    If you want it site wide, you can add some css

    COPY CODE
    
    .kleo-page {
    background-size: cover;
    background-image: url("path to your background image");
    }
    

    Then in theme options -> styling options, pick which sections you want the background to be displayed by setting that sections background color to transparent.

    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: Plugin issues with jobs expert #33689
     sharmstr
    Moderator

    Why do you think its an issue with k-elements? Did you disable k-elements to see if the error disappears?

    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 Video Does Not Work on Handheld #33688
     sharmstr
    Moderator

    That’s how handhelds work. Its the internet standard way of handling things due to cellular data rates/charges. That’s why there’s an option to add an image that will be displayed instead.

    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,201 through 10,240 (of 11,328 total)

Log in with your credentials

Forgot your details?