Forum Replies Created
-
AuthorPosts
-
do you have a third party maps plugin working?
for detailed map i use Chris Richardsons Map Press Pro. but both are loading there own api on different places.
Some Event Plugins comes with Event Place and an own loading of google map api.
so i think first of all try to deactivate all plugins an look if it works.on google maps api registration – the inserted urls lost there asterix after the url. ( *abc.com/* ) after saving.
on input field you have to input the asterix and after it a spacebar ! this will avoid deleting the asterix.Allmost every installation of mine works well – but sometimes i had to input urls which are property prooved from google
i don’t know why – but sometimes it helps to get it run:-
This reply was modified 8 years, 1 month ago by
Guenni007.
January 10, 2017 at 2:04 pm in reply to: Can I change the info in the footer and take away the Enfold Kriesi name. #731554i guess it is not important where the nolink – shortcode is placed
by the way – this snippet should be part of the enfold documentation – because the question occurs frequently
and btw 2 : the theme demo theme options download should be updated – only 10 of 26 are available yet
yes but as mod you have to be fast – and those demos with screenshots costs a lot of time.
Only other participants – maybe working on similar problems can do that.
Your welcomeJanuary 10, 2017 at 10:35 am in reply to: Is it possible to move copyright footer under navigation #731489see here : https://webers-testseite.de/weber/foto/
by the way this is part of a test of the medical theme demo ! Just for you – the switch to left navigation and dark. :lol
make some fun and press another button in menu. Enfold switches than to normal layout (only foto is styled that way)btw: for the responsive case – i think we have to find a different place ? shrink the window above to see
-
This reply was modified 8 years, 1 month ago by
Guenni007.
by the way – i see that the column padding has no active link – so it might be better to have no padding here – and to set the padding to the content.
so i gave to those contents a custom class (columnlinkpadding) and gave the link a hover style:
.column-link a { display: block; height: 100%; width: 100%; } .column-link a:hover { box-shadow: 1px 1px 5px #333; } .column-link div { display: inline-block; } .column-link .columnlinkpadding { padding: 5px 30px; }
But : A link in that column works but destroys the construction. (by the way a link in a link is not valide code)
this might work – do not forget to mark that little field “Deactivate Scheme org markup” (otherwise you have a lot of surrounding containers to the code block) :
looks this way:
i give those 1/2 columns a custom class ( column-link) and set up :
.column-link a { display: block; height: 100%; width: 100%; } .column-link div { display: inline-block; }
you can see it here: https://webers-testseite.de/ikom/neu/
each column is a link and works even for the whole area ( thats why the css is necessary)
to have side navigation with next prev arrows only in one category you have to place in your child-theme functions.php :
add_filter('avia_post_nav_settings','avia_same_category_filter', 10, 1); function avia_same_category_filter($settings) { $settings['same_category'] = true; return $settings; }
why you are not seeing them now i cannot say because i do not see the link to your site.
Maybe you are using on that post a fullwidth slider – for that case you can use in child-theme functions.php :add_filter('avia_post_nav_settings','avia_remove_fullwidth_slider_check', 10, 1); function avia_remove_fullwidth_slider_check($settings) { $settings['is_fullwidth'] = false; return $settings; }
if you want to change the directions ( for me it is more logically when going to the right side it comes next entry ) :
add_filter( 'avia_post_nav_entries', 'enfold_customization_postnav', 10, 2); function enfold_customization_postnav($entries, $settings) { $entries['prev'] = get_next_post($settings['same_category']); $entries['next'] = get_previous_post($settings['same_category']); return $entries; }
January 9, 2017 at 7:36 pm in reply to: Is it possible to move copyright footer under navigation #731252i would use the option to make a header widget area in child-theme functions.php:
add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area' ); function enfold_customization_header_widget_area() { dynamic_sidebar( 'header' ); }
than call a new widget area “header”
you can use the copy right info area for something else or leave empty.
place a text widget in that new area with your desired info :
© 2016 All Rights Reserved. [TiVo Designs]
the rest is a bit css to style ityou have to look what widget id is it in your case:
#text-11.widget_text .textwidget { color: #fff; font-size: 11px; margin-left: 13%; }
the margin-left is the value of navigation li
if you only like to have this on front-page it is possible to set an if clause above only for front-page!
or to use f.e. “restrict widgets” there you can set that this text in header-widget is only shown on front-page.-
This reply was modified 8 years, 1 month ago by
Guenni007.
and what do you do with all those “Touch-Screen-Junkies” visiting your site? (All mobiles, ipads, other touchpads etc.)
If they “Scroll” down they will press the “Link” immediately – because color-section width is the screen-width.
That is the reason why the google map (if placed in a color section) in enfold has the opportunity to set the pointer-events to nothing.so this is based on the demo “Enfold Medical” – and i think that something went wrong by importing the demo.
everything seems to be in place _ in source code i can see : “Mijn mestafzet is direct eenvoudiger geworden dankzij de Keydollar mestscheider”
and there is an image (edze-agra-home …) in the slider on top. First i thought there is a color setting to white which overwrites your testimonials – but.if you try to import the demo again ( dont do it) everything is overwritten than – maybe that will fix it.
Just wait on a mod here and give them your account datas – maybe they can see from inside what was going wrongi can not remember if there was in former times a button called “Send My Application”
it looks strange to contact form 7January 9, 2017 at 6:09 pm in reply to: Specify font size for only blog index and blog posts #731223so if it is only concerning to blog and single posts in blog:
.template-blog .entry-content p { font-size: 18px; line-height: 30px; }
maybe an !important is necessary
.template-blog .entry-content p { font-size: 18px !important; line-height: 30px !important; }
-
This reply was modified 8 years, 1 month ago by
Guenni007.
the selector should be:
.title_containerso f.e:
.title_container{ background: #fff url ( ); }
January 9, 2017 at 2:19 pm in reply to: Specify font size for only blog index and blog posts #731136well have a look here: http://kriesi.at/themes/enfold/blog/blog-single-author-big/
this is not the single blog post. It is a style to present the different posts. If you click one of them it goes to the posts.
What p tag would you like to change both – the one without the other . etc. ppthe best way for us is to have your site link. – and a hint what to change
-
This reply was modified 8 years, 1 month ago by
Guenni007.
January 9, 2017 at 1:35 pm in reply to: Can I change the info in the footer and take away the Enfold Kriesi name. #731122after you have inserted your copyright infos add at the end : [nolink]
f.e.
© Copyright: jessica petroff [nolink]
http://kriesi.at/documentation/enfold/change-the-footer-text-and-link/
January 9, 2017 at 1:17 pm in reply to: Einfacher Slider – H2 Tag entfernen und eigene css-Klasse einfügen #731112by the way i remember a thread – where someone wants to have the choice to set up the h-tag (for him to have the h1)and to have the oportunity to set the font-size:
https://kriesi.at/support/topic/h1-avia-caption-title/
it will look than this way:
btw: i refreshed those three files with a little instruction text. Zip Archive here
-
This reply was modified 8 years, 1 month ago by
Guenni007.
if you realy got the same thing as in the online Demo of default Theme you are a lucky guy. A lot of people would like to have this feature – that visitors of our site can choose the theme color mode.
This is only for demonstration the color preset modes to know what possibilities are given in enfold options dialog.
This has nothing to do with sidebar of the theme (where you place widgets etc.)if you are using a child theme – the update Process shouldn’t influence it at all.
You don’t have to switch to enfold parent theme – let the child theme be active and update the parent theme – thats all.
I prefer the ftp method – just overwrite all files of enfold.
All Settings are saved in child-theme and under WordPress wp-content / uploads / dynamic-avia folder.
So there was no need to save the theme settings file and upload it again.btw. there are allways upload buttons even if you have allready uploaded one (Just in case you like to change it). Do you see under the Upload button your inserted logo?
January 8, 2017 at 6:13 pm in reply to: Einfacher Slider – H2 Tag entfernen und eigene css-Klasse einfügen #730885gib dem Slider eine benutzerdefinierte classe und selektiere dann das h2 über diese Klasse.
wie man die custom Classes aktiviert : http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
dann:
.customclass h2 { font-size: 18px; }
was du da als Klasse nimmst bleibt dir überlassen
wenn du noch Bildtext hast der ist dann im p-tag enthalten also:
.customclass p { font-size: 14px; }
-
This reply was modified 8 years, 1 month ago by
Guenni007.
January 8, 2017 at 6:06 pm in reply to: Specify font size for only blog index and blog posts #730882it depends on what you want to enlarge – only the font-size of p tag when single post is shown – or do you want the p tag be enlarged allready in the category blog list style ( with excerpts ) etc.
so there is a class “sinlge-post” for all posts on body there is a class (even in category listing) “post-entry” etc.
you can use these depending on what to do.
.single-post p {font-size: 18px !important}
or
.post-entry p {font-size: 18px !important}
etc pp. every class which only comes up if your desired changings appear will be the specific selector.
On Portfolio case the class added to body was “single-portfolio”and how do i make it clearer that this here is a vimeo video:
https://webers-testseite.de/ikom/full-slider-with-content/
placed as background in color-section and it does loop in Safari (iMac and MacBook OSX Sierra)So i’m looking to – what is the difference on those two videos ? Both on vimeo – both as background !
And by the way concerning to ipad, iphone etc: https://help.vimeo.com/hc/en-us/articles/224983008-Defaulting-playback-for-embedded-videos
Important: Please be aware that autoplay and loop will not work on most mobile devices.
-
This reply was modified 8 years, 1 month ago by
Guenni007.
https://developer.vimeo.com/player/embedding
If the owner of a video is a Plus member, some of these settings may be overridden by their preferences.
for the uber menu you have to make different changes to make it fit to enfold.
One of these changings are in helper-main-menu.php – did you changed it back to normal enfold helper-main-menu.php ?
a lot of css fixes have been made too. You do all deleted them?but different movies do loop on background with vimeo and Safari? – So where is the difference ?
https://webers-testseite.de/ikom/full-slider-with-content/
this is a vimeo video inserted as background video to a color section.My suggestion was that your video is not a public one – like the one in the example above.
Btw : this seems not to be a problem with Enfold than with Safari or IOS devices. Google is full of questions concerning to that loop-problematic.
January 7, 2017 at 7:06 pm in reply to: Changing menu custom text color doesn't work in the child options page #730743if you like to change the active color or the hover color these are some different things.
If you like to colorize it the menu text font for one list point you can do it by giving the menu point an extra css .see this image of dashboard menu options – you see on point 9 a button on top of the window. Press it (Screen Options)
you see than that you can define extra input fields for menu points like css classes or target of links etc.
Mark the css classes
you now have the opportunity to give each menu point a unique class! which can be styled on quick css-
This reply was modified 8 years, 1 month ago by
Guenni007.
January 7, 2017 at 6:49 pm in reply to: Changing menu custom text color doesn't work in the child options page #730738and another question – what is a custom link text for you?
these are not congruent on changing the color?
By the way the influence of that setting is only if you choose on menu dialog (“Button Style (Colored))
It is in the preview a bit confusing because it is a menu point with normal font-color and a permanent background color.-
This reply was modified 8 years, 1 month ago by
Guenni007.
January 7, 2017 at 6:39 pm in reply to: Changing menu custom text color doesn't work in the child options page #730736to be precise – does anything change if you do some changings in Child-Theme Options dialog?
On Quick css f.e.
body * { font-size: 36px !important}
do not forget to save it
has it any influence to your theme?
If not – it might be a folder/file permission instance.
The settings you make here are all in the folder /wp-content/uploads/dynamic_avia/
if the file f.e. “enfold_child.css” has no write permissions than it won’t workJanuary 7, 2017 at 6:26 pm in reply to: Transform grid border to diagonal- Not text, just shape of cell #730734hm – you got only relative links to your anchors – but from a different page
routier.staging.wpengine.com/industry/
to the anchor of a different page it is a absolute path neccessary.
so long you have only a onepage homepage everything is ok but on having more than one page you need the link back to homepage.
http://routier.staging.wpengine.com/#solutions (hosted on WPengine) (perhaps it is enough to have /#solutions ) but only #solutions is not enough.please try to insert this code: on Safari Developer Preview it sometimes loops ( i don’t know why it works not allways)
https://player.vimeo.com/video/198220037?title=0&autoplay=1&loop=1&autopause=0
On Safari the same – it seems to have something to do with screen height to width value (https://kriesi.at/support/topic/background-video-only-loops-at-100/)
if you shrink or stretch browser window it sometimes starts again ???
-
This reply was modified 8 years, 1 month ago by
Guenni007.
-
This reply was modified 8 years, 1 month ago by
-
AuthorPosts