Forum Replies Created
-
Author
-
tourenParticipant
I have one question left.
in my theme settings I want to use for
Main content width for one sidebar templates*
70%
but I can only select 75% and 67%!
how can I use 70%?tourenParticipantI got it solved now with this css code
.main-color.container-wrap {
background-color: #b1c903;
}
.row {
background-color: #ffffff;
}#footer .row {
background-color: unset;
}
#socket .row {
background-color: unset;
}thanks for giving me the hint with background-color: unset
have a nice christmas time!!!
tourenParticipanthi kieran,
thank you – I added you css but now it looks like that
https://www.via-ferrata.de/ramsau-am-dachstein/I need to have it with a white background in the content area
tourenParticipantand regarding clickable background image I found this https://stackoverflow.com/questions/30130899/html-css-clickable-background-image
tourenParticipanthi kieran,
yes of course,
pls have a look here https://www.via-ferrata.de/ramsau-am-dachstein/
thanks a lot!December 17, 2018 at 11:32 in reply to: Add Font Roboto condensed to Standard Fonts (so that I do not have to use it via Google Webfonts) #215384tourenParticipantHi Radu!
thank you very much for your support! that worked! 🙂
September 29, 2018 at 12:40 in reply to: Add Google Fonts Roboto Condensed and Open Sans on my own server #210827tourenParticipantOk, I understand!
thank you!September 29, 2018 at 12:23 in reply to: Add Google Fonts Roboto Condensed and Open Sans on my own server #210822tourenParticipantcan I get my locally stored “Open Sans” Font in theme settings > Fonts
under “Standard Fonts”
somehow I do not see there “Open Sans” under “STandard Fonts” but still under “Google Fonts”September 29, 2018 at 11:56 in reply to: Add Google Fonts Roboto Condensed and Open Sans on my own server #210821tourenParticipantthank you very much!
I will try it as you suggested!
thanks!September 28, 2018 at 14:09 in reply to: delete wide left border in mobile view of buddypress activity post #210752tourenParticipantgreat! that worked like a charm!
thank you very much!! ?June 22, 2018 at 18:05 in reply to: conflict with popup function of Smashballon Instagram Feed Plugin #201567tourenParticipantNot marked as solutionJune 21, 2018 at 17:34 in reply to: conflict with popup function of Smashballon Instagram Feed Plugin #201457tourenParticipantNot marked as solutionMarch 1, 2018 at 17:04 in reply to: When logged out, the page gets loaded again and again via AJAX #190184tourenParticipanthi radu,
Thank you – i could solve the problem!.
i have changed the server to a server with more CPU and RAM. now it is much better!February 27, 2018 at 20:15 in reply to: When logged out, the page gets loaded again and again via AJAX #190020tourenParticipantok, thank you very much for your feedback, Radu!!
Any ideas how to get a better Time to first byte on my tour listings?
example page: https://tools.pingdom.com/#!/dYmzCl/http://www.via-ferrata.de/klettersteige/topo/via-ferrata-sasse-idrosee (TTFB 3 Sec.)February 27, 2018 at 11:22 in reply to: When logged out, the page gets loaded again and again via AJAX #189964tourenParticipanthi radu,
can you pls. have a look at my site and tell me why admin-ajax.php has a long load time of over 1 second
See here https://tools.pingdom.com/#!/dECrgA/http://www.via-ferrata.de
how can I solve this issue? do I need admin-ajax.php at all?tourenParticipanthi there,
i also have a question relating background image.
is it possible to add a background image (with visual composer) that then has an external link to a defined website?
How can this be done?
tourenParticipanthow do I have to extend the code above when I want to have a specific slide of my “headerbanner” slider only shown on page id =201 for example?
Or do I have to create a new slider “page201” with only this slide and then define that this slider should only be shown up on page id=201 and the other slider “headerbanner” does not show up on this page?
how would be the code?tourenParticipantHi Laura, unfortunately I am still in the development process on my local server.
But do you have a hint for me which custom css I have to add in order to have the UBERMENU mobile menu in the same line as UBERMENU desktop menu?
Thank you very much!tourenParticipantfbourdon! How did you fix the problem?
what have you done – can you pls. explain in detail!
thank you!tourenParticipantThank you soooooo much!!
with
COPY CODEif (!is_front_page() && !is_page('8175') && !is_page('8121') && !is_page('7344')){ putRevSlider('headerbanner'); }
everything is working fine now! I also tried
COPY CODEif ( !is_front_page() ) { if ( !is_page('8175','8121','7344') ) { putRevSlider('headerbanner'); } }
but this does not work!
thank you so much for your great support!
tourenParticipanthi sharmstr,
thank you very much – it was my mistake – I messed up the code when I integrated it in my child theme.
now it works withCOPY CODEif (!is_front_page() && !is_page('8175') ){ putRevSlider('headerbanner'); }
when I want to exclude more pages like this
COPY CODEif (!is_front_page() && !is_page('8175,8121,7344') ){ putRevSlider('headerbanner'); }
it does not work I have to use it then this way
##COPY CODEif (!is_front_page() && !is_page('8175') && !is_page('8121') && !is_page('7344')){ putRevSlider('headerbanner'); }
is there a smarter way to exclude more pages?
tourenParticipantsorry, I do not get it work as I want it – with your recent code I get the banner shown on homepage AND page ID 8175
but I want it this way
headerbanner shown on all sites
- except hompage AND Page ID 8175
And on page ID 8175 I want at the same position a different revolution slider integrated.
Pls. can you help me and paste me the relevant and working code for inserting putRevSlider!
Thank you very much – I hope it is now very clear how the integration of REvSlider should work!
tourenParticipantbut if I have already defined
putRevSlider('headerbanner');
for whole site how do I then have to use
putRevSlider('headerbanner', '8175');
in order to “overwrite”putRevSlider('headerbanner');
? Do you understand my “problem” and how can I exclude showingputRevSlider('headerbanner');
on e.g. ‘homepage’ or another specific page?can you pls. post me a code example that would work for this?!
tourenParticipantWorks great! I want to do little modification!
I have used now this code
COPY CODEadd_action('kleo_before_main', 'inject_slider', 10); function inject_slider() { putRevSlider('headerbanner'); }
so that the banner is inserted on every page
how can I exclude injection on homepage and how can I use on my page ID 8175putRevSlider(‘contentbannerbig’); instead of putRevSlider(‘headerbanner’);
how do I have to extend the code above?
tourenParticipantWow! that´s great! many thanks.
Is also a conditional tag possible s.th. like
show on every pages/post revslider1 and on pages with ID2,4 only showing revslider2 instead of revslider1?tourenParticipantcan you pls. attach me a screenshot where I should click on the image in order to add a link?
within themes options or in media galery or…?
I have not found it!regarding b) ok – I understand!
tourenParticipantc) how can I get a rotating Header Background image banner? (is this perhaps possible with a revolution slider integration or is there another smarter way to get it?
tourenParticipantI just wonder if I can also get HOT or NEW Icons the same way in TOP-MENU?
when I user HOT in the same manner I only get HOT as result (but not colored)tourenParticipantI just sorted out how to get an header banner in this area (styling > Alternate)
2 questions I still have
a) how can I link the header banner to an external website?
b) can I define for certain pages or categories a defined banner (that is different to the “general banner” set under styling > Alternate?Thank you for your support regarding these 2 topics!
tourenParticipantSo you want to have exactly as it is shown here http://seventhqueen.com/themes/kleo/business-directory/ ?
In order to get it work properly you need to download and installhttps://wordpress.org/plugins/geodirectory/
* Go to WP admin – Geodirectory – Design and check “Home bottom section” to enable the bottom section for the home page. Also set the content width to 75 and the right sidebar to 25. Example for the Home tab: “Width of home right section” to 25 and “Width of home content section” to 75
* To import theme demo content go to Appearance – KLEO Demo data and select to import “All from Geodirectory”. This will import the “Home Business Directory page” and set your widgets like on our demo.
* Go to WP admin – Geodirectory – Permalinks and select the plugin pages like in the image below. Those pages should be already created and just assign them but if they don’t exits then create blank pages with those names.
* Go to PAGE and search for “Business Directory” – within your pages you can then edit the directory as you want it
But to be honest I would look for another solution then Geodirectory plugin as you have to pay for every (good) extension of this plugin so that you have it work properly and well!
tourenParticipantthank you!! this worked!
Do you have a clue how I can get Buddypress activity posts in meta title more SEO friendly
I would like to have an individual title and meta description for each activity post.
How can I get an excerpt of the first 6 words of the activity post as title and also as meta description (in best case also the first 6 words comma separated as meta keywords)
I refer to posts like this http://seventhqueen.com/themes/kleo/members/demo/activity/90874/ – in the title and meta should then appear “let see the the view”pls. can somebody help me to get this work!!
tourenParticipantyes – go in PAGE > News magazine
then go to Edit this page (best in TEXT modus) – here you can search for categories and you can replace the IDs with your categories that you want to use!tourenParticipantHi Aweola, I also just did an installation of news magazine.
here is in brief how to do it best
1)Go to tools – Import
2)Choose “WordPress”
3) Upload the xml file called demo-kleo-news-home-and-posts.xml (you can find it in the folder Main Files\Demo Content ), depending on the demo you want (choose to import images if you want)then go to pages – there you can now find the (imported) page called “News Magazine”. this page you can now edit as you want it!
-
AuthorPosts