This topic has 13 replies, 3 voices, and was last updated 10 years by sharmstr.

  • Author
  • #13499
     bk
    Participant

    Hi,

    I’m having a few issues. any help would be great…

    1. like button missing>

    the like button is missing from the ‘share’ block in my posts, i have tried installing a like plugin, but this seems to work independently to the kleo functionality.

    http://bearwood.lokel.co.uk/developing-with-pleasure/

    2. i have changed the buy link to ‘sign up’. how do i remove this item from the menu once the user has logged in?

    http://bearwood.lokel.co.uk/

    3. strange titles and layouts when used with wpmu plugins>

    a. events. the title of the listing page is the title of the last event – how do i make this static text ‘Events’? Aslo can i hide the post meta from this page too?

    http://bearwood.lokel.co.uk/events/

    b. classifieds. the title isn’t in the title bar and i’ve got strange classifiedsclassifieds text appearing. Also the feature image is duplicated

    http://bearwood.lokel.co.uk/classifieds/

    c. directory plugin. same issue seen in the classifieds plugin
    http://bearwood.lokel.co.uk/directory/

    thanks,

    bk

    #13568
     bk
    Participant

    bump.

    #13658
     sharmstr
    Moderator

    Hey bk.

    1 – Likes on the social links was introduced recently. So make sure that you have installed the latest update. Also, make sure you have ‘enable post likes’ turned on in the theme option settings.

    2 – Go into your menu (appearance -> menus). Remove your current sign up. Expand BuddyPress and add ‘register’ (its under logged-out). Rename it from Register to Sign Up and save. It will only display when a user isn’t logged in.

    3 – I havent played with the Events plugin. Does it have an actual page called events or is it just a slug created by the plugin? If there isn’t an events page, try creating one and adding the events shortcode to it. Maybe.

    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

    #13738
     Abe
    Keymaster

    Hi.
    3. sharmstr suggestion to create pages and add respective shortocodes to them should be your best choice because you can customize the page name.
    We haven’t tested the plugins and can’t really say where those strange strings come from in the header.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    #13990
     bk
    Participant

    unfortunately i cannot use a shortcode as there isn’t one for the classifieds list view, so i’m still stuck with the ‘ClassifiedsClassfieds’ text, it appears before the kleo_title_section. if i remove the kleo_title_section completely then i am left with just ‘Classifieds’, I’m not sure how that’s possible! you can still see the text here

    http://bearwood.lokel.co.uk/classifieds

    strangely there is not the same problem on the detail page for classifieds

    http://bearwood.lokel.co.uk/classified/wooden-table/

    i’ve tried adding filters to replace the string, i’ve added the filter to theme-functions.php like so…

    add_filter( ‘the_title’, ‘removeClassifiedsClassifieds’ );
    add_filter( ‘the_excerpt’, ‘removeClassifiedsClassifieds’ );
    add_filter( ‘kleo_before_main’, ‘removeClassifiedsClassifieds’ );
    add_filter( ‘kleo_header’, ‘removeClassifiedsClassifieds’ );
    add_filter( ‘kleo_after_body’, ‘removeClassifiedsClassifieds’ );
    add_filter( ‘the_body’, ‘removeClassifiedsClassifieds’ );
    add_filter( ‘general_title_section’, ‘removeClassifiedsClassifieds’ );

    function removeClassifiedsClassifieds( $content )
    {
    return str_replace( ‘ClassifiedsClassfieds’, ”, $content );
    }

    but i cannot find it.

    i’m getting pretty desperate on this one now. if you any ideas how i can remove this text would be great

    by the way i fixed the h1 titles i wanted by updating the kleo title function.

    #13997
     sharmstr
    Moderator

    I’ll try to look at it in the morning for you. Trying to help people here so Abe and the rest of the Kleo theme can focus (hopefully) on skinning Woo Commerce. I really need 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

    #14106
     bk
    Participant

    thanks sharmstr, i was finally after many hours with the help of wpmu devs able to find/fix the problem. i edited the plugin core.php file to change comment out the following line

    //return post_type_archive_title();

    #14107
     sharmstr
    Moderator

    Excellent news. Sorry I didnt get to it today.

    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

    #14194
     Abe
    Keymaster

    Hi sharmstr, We are working hard to have it finished this week

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    #14419
     sharmstr
    Moderator

    @bk

    How did you sort out your issues with the events + plugin? I’m working on it now and hoping you can share your experience to save me some time 🙂 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

    #14476
     bk
    Participant

    @sharmstr honestly had a pretty rubbish time with the plugin. the wpmu events plugin doesn’t pay nice with kleo or vice versa. the fact that there isn’t a shortcode to list all events in the events plugin doesn’t help.

    here are the main issues i encountered and how i fixed them (not necessarily the best fix)

    events list>
    – title displayed is not name of page, but name of latest article. FIX updated kleo’s title function to set title to ‘Events’ when the request uri is /events/
    – summary text for each item is all next to each other (no formatting, or punctuation). FIX installed advanced snippet plugin to maintain format of date/time. then updated advanced snippet plugin to take notice of the additional tags (time, tel, etc) that the events plugin uses and update code to chage default snippet length to fewer words.
    – post meta data (author, date of posting) can be confused with date and venue of the event. FIX update kleo meta function to just list event category

    event detail>
    – i wanted to display maps so installed the wpmu maps plugin, but the responsive plugin for maps does not work with events plugin. FIX

    COPY CODE
    jQuery(document).ready(function() {
              setTimeout(function(){resizeMap()},500);
    });
    
    function resizeMap(){ 
        jQuery('.agm_google_maps').css('width','100%');
    	jQuery('.agm_google_maps > div').css('width','100%');
    }
    
    

    – styling issue, big white space at top of listing. FIX remove clear left from the top hr (need to add class to the hr to do this)
    – post meta data can be confused with date of event. FIX… not done yet.

    that’s just the stuff off the top of my head, there could be other issues!

    hth

    #14483
     sharmstr
    Moderator

    Thanks for the info. I had no problem creating a page and adding the events shortcode

    COPY CODE
    
    [eab_archive lookahead="1" weeks="52" limit="10" paged="1" page="1"]
    

    All of the shortcodes are listed in wp-admin/edit.php?post_type=incsub_event&page=eab_shortcodes

    How did you masonry your events list?

    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

    #14540
     bk
    Participant

    you should work for wpmu! they couldn’t tell me that shortcode. when not using a shortcode the plugin takes a page template to inject code into, it happened to choose masonry, which suits me as its my favourite.

    #14556
     sharmstr
    Moderator

    There’s a ton of information in their Events plugin forum.

    If anyone else wants to know how to get a masonry list of events, make sure you have ‘override default appearance’ turned off.

    thanks again bk

    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 14 posts - 1 through 14 (of 14 total)

The forum ‘KLEO’ is closed to new topics and replies.

Log in with your credentials

Forgot your details?