Forum Replies Created
-
AuthorPosts
-
Hi!
Let us know if it fix the issue. Please give us a link to your website so that we can inspect it.
Regards,
IsmaelOctober 21, 2013 at 1:54 am in reply to: Imaged not centered on certains devices in layerslider #178205Hi chryseis!
Please check your website here: http://responsinator.com/?url=http%3A%2F%2Fwww.calliframe.com%2F
All layer slider elements are centered on mobile view. Your settings are correct. The Layers Container will create a new container and constrain all slider elements inside. This new container will always be aligned at the middle or center of the Layer Slider.
Best regards,
IsmaelHey franktw!
You can refer to this link: http://codex.wordpress.org/Function_Reference/wp_register
Edit header.php then add the code after the wp_nav:
<a href="http://www.example.com/wp-login.php?action=register">Register</a>Replace http://www.example.com with your domain name.
Best regards,
IsmaelOctober 19, 2013 at 12:36 pm in reply to: How to add a new icon sub-top-navigation for phone? #177851Hey!
Follow Dude’s Instruction:
1) Please edit /wp-content/themes/enfold/includes/admin/register-admin-options.php and search for
"subtype" => array( '500px' => 'five_100_px', 'Behance' => 'behance', 'Dribbble' => 'dribbble', 'Facebook' => 'facebook', 'Flickr' => 'flickr', 'Google Plus' => 'gplus', 'Instagram' => 'instagram', 'LinkedIn' => 'linkedin', 'Pinterest' => 'pinterest', 'Skype' => 'skype', 'Soundcloud'=> 'soundcloud', 'Tumblr' => 'tumblr', 'Twitter' => 'twitter', 'Vimeo' => 'vimeo', 'Xing' => 'xing', 'Youtube' => 'youtube', 'Special: RSS (add RSS URL, leave blank if you want to use default WordPress RSS feed)' => 'rss', 'Special: Email Icon (add URL to a contact form)' => 'mail', )),You can add your social media icon to the array. The first value represents the caption in the dropdown, the second value will be used to show embed the icon (icon/character code). We’ll include a filter in the next update which helps you to add a social icon without modifying the theme files.
Then add following code to functions.php
add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); function avia_add_custom_icon($icons) { $icons['behance'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue915'); return $icons; }and instead of “behance” insert the option value of your social icon (replace it with the same value you used for the “icon/character code” in step 1). You also need to replace ue915 with the character code of your icon – if you don’t know it you can use fontello.com to look up the default values (click on the social icon and select “Customize Codes”).
Cheers!
PeterOctober 19, 2013 at 12:32 pm in reply to: Where to change the "double" h1 tag in blog posts? #177849Hi!
Please try to copy the whole avia_title function on the child theme’s functions.php.
Cheers!
IsmaelOctober 19, 2013 at 8:17 am in reply to: Warning: Invalid argument supplied for foreach() in … postslider on line 443 #177775Hi!
Please post your login details here. Set it as a private reply so you and only moderators can see it.
Best regards,
IsmaelHi!
The link you provided is broken: http://sandbox.hipcure.com/philsouth
I tried the http://sandbox.hipcure.com but it is broken too or doesn’t exist. Are you sure this is the correct link ?
Cheers!
IsmaelHey!
Please insert the Content Slider after the Layer Slider or any other element.Remove the title on each slide and save changes. Add this on your custom.css or Quick CSS:
.content, .sidebar { padding-top: 5px; } #top .avia-smallarrow-slider-heading { display: none; }Best regards,
IsmaelOctober 19, 2013 at 8:08 am in reply to: Navigation menu for long single page website with Enfold #177772Hey!
It works on my end. Please move the jQuery code on avia.js below this code:
$(document).ready(function() {Cheers!
IsmaelHi!
I checked the site and the Digg plugin looks ok:

Is that how you see it on your end? What browser and OS are you testing this with?
Best regards,
IsmaelOctober 19, 2013 at 7:59 am in reply to: How to remove the little extra thumbnail on every post with a featured image? #177764Hi sdaly18!
What Blog Style are you currently using? Please check on Enfold > General Settings > Blog Style. Please give us a link to the Blog page.
Cheers!
IsmaelOctober 19, 2013 at 7:58 am in reply to: Set Select camelCase Text to lowercase in Accordion Categories #177763Hey Michae1!
You can use this on your custom.css or Quick CSS:
.main_color .taglist a { text-transform: none !important; }Best regards,
IsmaelHi Gstar72!
You can use Media Queries to resize the font of the caption when viewing on mobile device:
@media only screen and (max-width: 767px) { .avia-fullwidth-slider div .slideshow_caption h2 span, .avia-fullwidth-slider div .slideshow_caption .avia-caption-title em span { font-size: 12px; } }Remove browser cache then reload the page.
Best regards,
IsmaelHey!
Thanks for explaining but we really need to see the website. You provided the login details but the username is missing. Please post it here as a private reply.
Cheers!
IsmaelOctober 19, 2013 at 7:45 am in reply to: Website banner /slider is been cut by certain browsers #177756Hi!
Please use the Color Section. Upload the logo image as Custom Background Image then set the Background Repeat to Stretch to fit. On the For Developers: Section ID, place a unique section id called “logo-section”. You can then go to Quick CSS field to specify the height of the section.
#logo-section {
height: 300px;
}`Adjust the height if necessary.
Best regards,
IsmaelHi!
It looks ok on my end. Please edit Yigits code to something like this:
li#menu-item-3512 a { padding: 5px 10px; background-color: blue!important; color: white!important; height: 30px!important; line-height: 20px!important; margin-top: 43px; border-radius: 10px; }This is the screenshot:

Regards,
IsmaelHey!
I’m a bit lost on what you want to do. Dude instructed to remove a line of code so that the “All” sort text will be remove. It should work. Can you please post a screenshot of what you’re trying to do?
Regards,
IsmaelHey!
Can you please post the code for your google map? You can add the sensor parameter at the end of the map url, something like this &sensor=true. If that doesn’t work please edit, framework > php > class-framework-widgets.php, find this code:
wp_register_script( 'avia-google-maps-api', $prefix.'://maps.google.com/maps/api/js?sensor=false', array('jquery'), '1', false);Replace it with:
wp_register_script( 'avia-google-maps-api', $prefix.'://maps.google.com/maps/api/js?sensor=true', array('jquery'), '1', false);Best regards,
IsmaelOctober 19, 2013 at 7:09 am in reply to: Cannot adjust the number of transition for the large LayerSlider #177746Hey!
Don’t forget to “Save changes” after you close or click the red x button. Remove browser cache then reload the page a few times.
Best regards,
IsmaelHey!
You can use this on your custom.css or Quick CSS:
#main, .html_stretched #wrap_all { background-color: transparent; } #socket { background: rgba(0,0,0,.2); }Regards,
IsmaelHi LesYoung!
First of all you’re using an old version of the theme. Please download 2.3.2 or wait for the release of 2.4 which is coming soon. Update the file via FTP: http://vimeo.com/channels/aviathemes/64927356
Can you list a specific issue on IE browser? I check your site on IE9 and it looks nice.
Cheers!
IsmaelOctober 19, 2013 at 5:33 am in reply to: Can I use the advance layout in the Woocommerce Product page? #177722Hey!
You can still use the Advance Layout Builder on Woocommerce Pages. Make sure that the woocommerce pages shortcode are included on a Text Block. For example, edit the checkout page, switch to Advance Layout Builder insert the Text Block then add the checkout page shortcode [woocommerce_checkout]. You can add any other elements you want below or under the text block. When you install the Woocommerce plugin an additional panel called “Plugin Additions” will be added on the advance layout builder where you can add Product Grid and Product Sliders.
Regards,
IsmaelHey!
Kriesi can check this on an iOS environment. Let’s wait for his reply.
Cheers!
IsmaelHi CAUM!
I’m not sure if codestyling localization will help but you can use the Widget Logic plugin with the WPML plugin combined: http://wpml.org/2011/03/howto-display-different-widgets-per-language/
Regards,
IsmaelHi!
Clear the cookies and cache in your browser. Close all browsers, reopen it and try logging back into your WP Admin. Change the permalink structure on Settings > Permalinks then save it. Do this a few times. In the Settings > General, make sure that the WordPress address (URL) and the Blog address (URL) match.
Cheers!
IsmaelOctober 19, 2013 at 5:14 am in reply to: Stretching header menu to fullwidth instead of 1210px #177712Hi DavyE!
What type of header are you using right now? Please check Enfold > Header > Header type. You can adjust the header menu width by increasing the padding between menu items.
.main_menu ul:first-child > li > a { padding: 0 15px; }Use Media Queries to adjust it on different screen sizes.
Best regards,
Ismael -
AuthorPosts
