-
Author
-
March 26, 2014 at 01:06 #13499bkParticipant
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?
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
March 28, 2014 at 02:33 #13658sharmstrModeratorHey 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
March 29, 2014 at 02:29 #13738AbeKeymasterHi.
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.April 1, 2014 at 03:15 #13990bkParticipantunfortunately 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.
April 1, 2014 at 04:14 #13997sharmstrModeratorI’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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
April 2, 2014 at 03:53 #14106bkParticipantthanks 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();
April 2, 2014 at 04:27 #14107sharmstrModeratorExcellent 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
April 2, 2014 at 23:42 #14194AbeKeymasterHi 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.April 5, 2014 at 17:00 #14419sharmstrModeratorHow 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
April 6, 2014 at 22:50 #14476bkParticipant@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 categoryevent detail>
– i wanted to display maps so installed the wpmu maps plugin, but the responsive plugin for maps does not work with events plugin. FIXCOPY CODEjQuery(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
April 7, 2014 at 00:52 #14483sharmstrModeratorThanks 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
April 8, 2014 at 01:37 #14540bkParticipantyou 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.
April 8, 2014 at 14:51 #14556sharmstrModeratorThere’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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
-
AuthorPosts
The forum ‘KLEO’ is closed to new topics and replies.