-
AuthorSearch Results
-
December 30, 2013 at 3:33 pm #203720
In reply to: sharing buttons
Hey eliuserman!
You can try using this plugin http://wordpress.org/plugins/socialize/
You can find recommended plugins list here https://kriesi.at/support/topic/recommended-plugins-last-update-04-09-2013/Regards,
YigitDecember 30, 2013 at 3:30 pm #203718In reply to: Color Changing title (h2) within page
Hi rodarialtda!
You can add following code to Quick CSS in Enfold theme options under Styling tab to change the color of speacial heading elements
.main_color .meta-heading>* { color: black; }and please use following code to align your logo
.logo { margin-top: 30px; } .header-scrolled .logo { margin-top: 0; }Best regards,
YigitDecember 30, 2013 at 3:25 pm #203714In reply to: layerslider 5 update ?
Hi stevemulisa!
Thanks :)
Please refer to Ismael’s post here https://kriesi.at/support/topic/disable-layerslider-failed/#post-203464Cheers!
YigitDecember 30, 2013 at 2:12 pm #203697In reply to: Fehlender "Pfeil nach oben" auf "to top"-button
ok – I’ll stay in english mode ;-)
It would be cool, if you also have any information for me in the third thread I’ve posted this morning regarding the button css … That would help me a lot !!!
Thanks
TomDecember 30, 2013 at 2:05 pm #203694In reply to: Fehlender "Pfeil nach oben" auf "to top"-button
Hey!
Yes, it’s ok for me. However note that I’m the only member of the support staff who speaks German and the response time may increase (i.e. if I don’t work one day you need to wait more than 24h for an answer…).
Regards,
PeterDecember 30, 2013 at 1:55 pm #203692In reply to: Fehlender "Pfeil nach oben" auf "to top"-button
Hi Peter !
Thanks a lot – as you can imagine your tip works like a charm … :-)
I always wonder how you can fix every problem in seconds – it seems you live inside your code :-)
Thanks
TomBTW: is it ok to post here in german ?
December 30, 2013 at 1:45 pm #203689In reply to: Fehlender "Pfeil nach oben" auf "to top"-button
Hi!
Great, you probably just need to update the child theme footer.php with this line
<a href='#top' title='<?php _e('Scroll to top','avia_framework'); ?>' id='scroll-top-link' <?php echo av_icon_string( 'scrolltop' ); ?>></a>Best regards,
PeterDecember 30, 2013 at 1:41 pm #203688In reply to: Fehlender "Pfeil nach oben" auf "to top"-button
Hi Yigit !
The css changed nothing – still no icon …
That made me curious and like always the error is in front of the screen :-/I had an old footer.php in the child folder – removing this showed the icon immediately again …
Sorry … but like always big thanks for the helping !!!
Best regards
TomDecember 30, 2013 at 1:36 pm #203686Topic: Pages crashing after changing ENFOLD settings
in forum Enfoldkarbonato
ParticipantHi, I wrote about some 404 problems here in another post which is already closed to new replies.
Finally I found what cause my website to crash on 404 errors.
As soon as I change de “General Settings” within the ENFOLD Menu and I save the changes, suddenly all the pages located on the Top Menu stop working resolving a 404 error. Also the Column title page of a MegaMenu I have, does not load so a 404 error appears instead. Only the subpages inside the only column with subpages are working.
The only way I found to resolve this issue was deactivating 10 plugins at once and then reactivating them again and then all the pages works smoothly. I tried deactivating the WPML plugin only and activating with no success so I’m not pretty sure where the problem is located.
It seems that the ENFOLD menu write in some part of the website structure not properly and then when reactivating the plugins wordpress fix the issue.
With my coding skills I cannot find out what’s going on and how to solve this issue and not be worried anymore about changing any ENFOLD setting.
Thank you in advance and have a happy new year!
Oriol
December 30, 2013 at 1:30 pm #203684In reply to: Fehlender "Pfeil nach oben" auf "to top"-button
Hi!
Please try adding following code
$avia_config['font_icons'] = apply_filters('avf_default_icons', array( 'scrolltop' => array( 'font' =>'entypo-fontello', 'icon' => 'ue876'), ));You can also check Footer.php file in Appearance > Editor and make sure 168th line is the same as in screenshot, It should be at the very bottom of the file http://i.imgur.com/M3XOqYo.jpg
Cheers!
YigitDecember 30, 2013 at 1:01 pm #203682In reply to: Fehlender "Pfeil nach oben" auf "to top"-button
Hi Peter!
Ich arbeite mit einem Child Theme und ersetze immer den kompletten Enfold Ordner !
Und ich habe bereits 2.4.4 online !Im Child Theme Ordner ist zwar auch eine functions.php, aber komplett leer:
<?php /* * Add your own functions here. You can also copy some of the theme functions into this file. * WordPress will use those functions instead of the original functions then. */Fällt Dir spontan noch was ein ??? :-)
LG
TomDecember 30, 2013 at 12:44 pm #203676In reply to: Fehlender "Pfeil nach oben" auf "to top"-button
Hi!
Ich glaube das “scrolltotop” icon hat den falschen Icon Code. Bitte versuche die enfold/functions.php Datei per ftp zu aktualisieren und mit der neuen Datei der v2.4.4 Theme Version zu überschreiben.
Cheers!
PeterDecember 30, 2013 at 11:49 am #203662In reply to: Fehlender "Pfeil nach oben" auf "to top"-button
This reply has been marked as private.December 30, 2013 at 11:48 am #203661Topic: Fehlender "Pfeil nach oben" auf "to top"-button
in forum Enfoldideenstart
ParticipantHi !
Bei einem der letzten Updates ging bei mir irgendwie die nach oben zeigende Pfeilspitze auf dem “to top”-button verloren!
Ich habe nur noch eine funktionierende, aber leere Box !?Any ideas ???
LG
TomDecember 28, 2013 at 11:44 am #203629In reply to: sidebar/widget issues
Hi kls1138!
1) The order is determined by the code in enfold/sidebar.php. If you want to display the “Displayed Everywhere” widget area on top of the “Sidebar Blog” widget area open up sidebar.php and delete following code
//global sidebar if (dynamic_sidebar('Displayed Everywhere')) : $default_sidebar = false; endif;Then replace
if($custom_sidebar) { dynamic_sidebar($custom_sidebar); $default_sidebar = false; }with
//global sidebar if (dynamic_sidebar('Displayed Everywhere')) : $default_sidebar = false; endif; if($custom_sidebar) { dynamic_sidebar($custom_sidebar); $default_sidebar = false; }2) I’m not familiar with the Adrotate plugin code and I don’t know how you can fix this. Please contact the plugin author – maybe he can provide support for the plugin.
Regards,
PeterDecember 27, 2013 at 6:47 am #203623In reply to: A few issues I'd appreciate some help with?
Hey!
It seems like you have figured it out. I checked your website on the latest versions of Chrome, Firefox and IE and this how it looks on my end http://i.imgur.com/KusgXmJ.jpg
( from top to bottom: Firefox, Chrome, IE )Best regards,
YigitDecember 27, 2013 at 6:42 am #203622In reply to: Changing fonts in advanced slider with google fonts
Hey HadjiMagic!
Which font family would you like to use? You can add following code to Quick CSS in Enfold theme options under Styling tab to force all heading elements in LayerSlider to use open sans font family
#top .avia-layerslider .ls-wp-container .ls-layer h1, #top .avia-layerslider .ls-wp-container .ls-layer h2, #top .avia-layerslider .ls-wp-container .ls-layer h3, #top .avia-layerslider .ls-wp-container .ls-layer h4, #top .avia-layerslider .ls-wp-container .ls-layer h5, #top .avia-layerslider .ls-wp-container .ls-layer h6 { font-family: 'Open Sans', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif!important; }Cheers!
YigitDecember 27, 2013 at 6:36 am #203620In reply to: Sidebar in Alternate Content
Hey!
Color Section element and integrated Layer Slider only works fullwidth on Enfold. However, you can choose not to display sidebar on your page and add Widget Area element to display your widgets.
On which slider would like to increase margin? If LayerSlider, please add following code to Quick CSS in Enfold theme options under Styling tab.avia-layerslider { margin-top: 10px; margin-bottom: 10px; }Regards,
YigitDecember 26, 2013 at 12:24 pm #203612In reply to: Trouble with images in 2.4.4
Hey!
The next update (see https://kriesi.at/support/topic/linking-the-iconbox/ ) will enable you to create an icon list (or icon box) with clickable tiles and icons. You can then use this elements to create a list of pdf links which will open in the same or new windows.
Regards,
PeterDecember 25, 2013 at 1:13 am #203594In reply to: Post Slider Issue
Hey!
You can use it as following
@media only screen and (min-width: 767px) and (max-width: 989px) { .avia-promocontent { margin-right: 0px; } .av_promobox .avia-button { right: 59px; top: 75%; } }Best regards,
YigitDecember 24, 2013 at 1:23 pm #203576In reply to: Portfolio items all 404's Rewrite rules missing?
Hi!
I just noticed you already updated Enfold to verion 2.4.4. Since Enfold 2.4.4 you should be able to change the portfolio permalinks settings on the Settings > Permalink page. You don’t need to use the code I posted here ( https://kriesi.at/support/topic/wp-3-8-with-wpml-3-0-1-creates-404-errors/ ). If you want to translate the slugs with WPML you can use the “String Translation Management” extension for the slug translation.
If the permalink rules don’t work try to delete the theme folder, then re-upload all themes files (v2.4.4), go to Theme Options and save the theme settings, then go to Settings > Permalinks and save the permalink options.
Best regards,
PeterDecember 24, 2013 at 12:08 pm #203561In reply to: full width lost
Yes, the strange thing is as follows.
Any type of styling I bring (color, font, footer, top menu above the header, etc..) causes the loss of the full with of the layout, namely the full with of the slider.
The only thing i have found to correct the problem, for now is to reset all the functions to start status. But is is no really a good thing to have to rebuild the whole personnalisationDecember 24, 2013 at 11:26 am #203538In reply to: Breadcrumb problem
This reply has been marked as private.December 24, 2013 at 10:56 am #203530In reply to: Portfolio viewing issues
Many thanks Ismael. I’m afraid this is double dutch to me and I’m really wary of getting it wrong!
Is it really not possible to be able to change the order of the portfolio entries in the admin panel as this seems to determine the order they appear?
I’m considering using a dynamic header at the top of each page is it possible to have the breadcrumbs added via a text panel and if so what code do I use?
Cheers
RupertDecember 24, 2013 at 9:17 am #203515In reply to: Video in Layer Slider does not show on Iphone
Hi Ismael,
Thank you for your input! I have used your advice..
The DIV position i used was absolute, coud it be that therefore the css is not influencing the position?
Also the the video is not responsive and stays relatively large..
This is the DIV:
<div style=”position: absolute; top: 70px; left: 200px; width: 410px; height: 234px; background-color: yellow;”><iframe src=”//player.vimeo.com/video/81766071?badge=0&color=fff” width=”410″ height=”234″ frameborder=”0″ webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe></div>
—
I realie that this is more HTML, CSS and responsiveness tuition I am asking here and not so much helpdesk related..
Would you please be so kind to help me out here?Thanx!
Ben
December 24, 2013 at 7:32 am #203495Hey!
Edit config-layerslider > LayerSlider > skins > fullwidth > skin.png, adjust the size of the play button:

Adjust the width and height of the button using this on your Quick CSS:
.ls-fullwidth .ls-playvideo { width: 100px; height: 100px; margin-left: -25px; margin-top: -25px; }Best regards,
IsmaelDecember 24, 2013 at 7:01 am #203484Hi discover_peppermint!
Please check if the top menu item has the “Use as mega menu” option ticked. Unchecked the mega menu option.
Regards,
IsmaelDecember 24, 2013 at 6:50 am #203476This reply has been marked as private.December 24, 2013 at 6:26 am #203465Topic: sidebar/widget issues
in forum Enfoldkls1138
ParticipantHello,
I’m having trouble getting widgets to display in the sidebar the way I’d like. There are two issues:
1) Ordering: There are widgets that I want to display on every page so I use the “Displayed Everywhere” widget option. I also want to display different widgets on the single post pages so I use the “Sidebar Blog” widget option. The problem is that I have no control over the order in which the widgets are displayed. It appears that by default, the “Sidebar Blog” widgets are posted on top of the “Displayed Everywhere” widgets. How can I control the order in which these are displayed?
2) I’m using the Adrotate plugin to manage my advertisements. The plugin has features that allow you to determine which categories particular ads will be displayed in. Unfortunately, this feature isn’t working with the enfold theme and my advertisements are displaying in every category and on every single post. Is there some way to fix this?
Thanks!
December 24, 2013 at 5:27 am #203455In reply to: Sidebar in Alternate Content
Good evening, I would like to know too, how can I get a space in the “Slider” I wish I had a margin at the top and bottom
-
AuthorSearch Results
Viewing 30 results - 135,841 through 135,870 (of 142,935 total)
-
Search Results
-
Hi !
Bei einem der letzten Updates ging bei mir irgendwie die nach oben zeigende Pfeilspitze auf dem “to top”-button verloren!
Ich habe nur noch eine funktionierende, aber leere Box !?Any ideas ???
LG
TomTopic: sidebar/widget issues
