Forum Replies Created
-
AuthorPosts
-
October 25, 2013 at 6:46 am in reply to: Avia Interface Won't Load When Trying to Edit Homepage #180506
Hey!
Can you please upgrade to Enfold 2.4 then post the login details here? Set it as a private reply so that we can check the site. Please deactivate all plugins first. Also, check wp-content/plugins folder and delete unnecessary plugin folders.
Regards,
IsmaelOctober 25, 2013 at 6:42 am in reply to: Different layout for portfolio tag archive and blog archive #180503Hey EvelineB!
You can edit archive.php and tag.php, find this code:
//get the sidebar $avia_config['currently_viewing'] = 'blog'; get_sidebar();
Replace it with this for archive page:
//get the sidebar $avia_config['currently_viewing'] = 'archive'; get_sidebar();
And replace it with this code for tag archive page:
//get the sidebar $avia_config['currently_viewing'] = 'tag'; get_sidebar();
Edit sidebar.php, find this code:
// forum pages sidebars if ($avia_config['currently_viewing'] == 'forum' && dynamic_sidebar('Forum') ) : $default_sidebar = false; endif;
Below, add this:
// archive pages sidebars if ($avia_config['currently_viewing'] == 'archive' && dynamic_sidebar('Archive Pages') ) : $default_sidebar = false; endif; // tag pages sidebars if ($avia_config['currently_viewing'] == 'tag' && dynamic_sidebar('Tag Pages') ) : $default_sidebar = false; endif;
Edit includes > admin > register-widget-area.php, find this code:
foreach ($sidebars_to_show as $sidebar) { register_sidebar(array( 'name' => 'Single Product Pages', 'before_widget' => '<div id="%1$s" class="widget clearfix %2$s">', 'after_widget' => '<span class="seperator extralight-border"></span></div>', 'before_title' => '<h3 class="widgettitle">', 'after_title' => '</h3>', )); }
Below, register the Tag and Archive widget area.
foreach ($sidebars_to_show as $sidebar) { register_sidebar(array( 'name' => 'Archive Pages', 'before_widget' => '<div id="%1$s" class="widget clearfix %2$s">', 'after_widget' => '<span class="seperator extralight-border"></span></div>', 'before_title' => '<h3 class="widgettitle">', 'after_title' => '</h3>', )); } foreach ($sidebars_to_show as $sidebar) { register_sidebar(array( 'name' => 'Tag Pages', 'before_widget' => '<div id="%1$s" class="widget clearfix %2$s">', 'after_widget' => '<span class="seperator extralight-border"></span></div>', 'before_title' => '<h3 class="widgettitle">', 'after_title' => '</h3>', )); }
You can now add different widgets for Tag and Archive page.
Regards,
IsmaelHey dkowalewski!
What picture? Can you please post a screenshot of the issue? You can use imgur, dropbox etc to show the screenshot.
Cheers!
IsmaelHi Robert!
If you want to show the comments on portfolio, you can edit single-portfolio.php and find this code:
$avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar'; get_template_part( 'includes/loop', 'portfolio-single' );
Below, add this code:
//wordpress function that loads the comments template "comments.php" comments_template( '/includes/comments.php');
And edit pages.php, find this code:
$avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar'; get_template_part( 'includes/loop', 'page' );
Below, add the comments section again.
//wordpress function that loads the comments template "comments.php" comments_template( '/includes/comments.php');
This will only work if you’re not using the Advance Layout Editor for the pages.
Best regards,
IsmaelOctober 25, 2013 at 6:27 am in reply to: Submit button – use the enfold instead of the form button #180497Hey midischool!
Can you please post a screenshot of the button that you want? You can style the submit button using this selector on Quick CSS:
.main_color input[type='submit'] { background-color: #c05f5f; color: #ffffff; border-color: #a03d3d; } .avia_ajax_form .button { margin: 0; padding: 16px 50px; border-radius: 2px; border-bottom-width: 1px; border-bottom-style: solid; font-weight: normal; font-size: 12px; } input[type="submit"], #submit, .button { padding: 9px 22px; cursor: pointer; border: none; -webkit-appearance: none; border-radius: 0px; }
Cheers!
IsmaelHi!
The link is working properly. It takes a while to load but it works. I applied the second slide’s link to the first one. This is the link that I used. http://www.waterlandfilm.nl/portfolio-item/rundskop/
Please check the page: http://www.waterlandfilm.nl/
Regards,
IsmaelHi philwragg!
Can you please give us a link to the page? Do the “Homepage” page exist?
Best regards,
IsmaelHey Indiatravelz!
You can add this on your custom.css or Quick CSS to remove the gray:
.main_color tr:nth-child(odd), .main_color .pricing-table>li:nth-child(odd), .main_color .pricing-extra { background: white; }
Best regards,
IsmaelHi!
I’m not sure why the Grid Layout is not working. Can you please upgrade to Enfold 2.4? It is available on your themeforest account. Download it then update the theme via FTP.
Regards,
IsmaelHi!
Did you set the Mobile App category as Second Apps’s Parent category?
Cheers!
IsmaelHi artspbseo!
You can’t enable a right sidebar on the single product page. It will always be below the product image. You can choose not to show it using this on your custom.css or Quick CSS:
#top #main .single-product-main-image .sidebar, #top #main .single-product-main-image .inner_sidebar { display: none; }
Best regards,
IsmaelHey weathertight!
You can use the Color Section then set the logo image as background. Can you please post a screenshot of what you want to do?
Cheers!
IsmaelHey!
The site http://www.safetyrevolutionltd.com/ is not using Enfold. Can you please provide us with the correct link?
Regards,
IsmaelHi!
Did you add the widget on the Shop Overview Page? Have you tried removing it then place it again on the widget area? Please post the login details here and set it as a private reply.
Cheers!
IsmaelHi crevlon!
What heading are we talking about here? I visited the page you provided on question 1 and it takes me to a Blog Page. Can you please post a screenshot?
Regards,
IsmaelHey!
Please try this:
#top .avia-logo-element-container img { width: auto; }
I tested it on IE8 – IE10 and it works fine. This is the screenshot of my test installation.
Best regards,
IsmaelHey!
You can manually insert the button link on a Text Block element. You can use this:
<form><input type="button" value="Download Now" onClick="window.location.href='DOWNLOAD LINK HERE'"></form>
Regards,
IsmaelHey!
It will work great on new browsers. What we did is override the theme’s css with a custom one and added the unique background cover property for IE browsers.
Regards,
IsmaelHi!
I’m not sure if this is possible with css alone. The css transition doesn’t allow the use of transform property yet. You might need to use jQuery to achieve what you want. Please hire a freelance developer to create the slider for you. These links might help:
http://css-tricks.com/css3-clock/
http://css3.bradshawenterprises.com/transitions/Best regards,
IsmaelHi!
Can you please give us a link to your website? You can use the WPML plugin to translate the website. You may need to manually edit the strings on the .po file and generate the .mo file using POEDIT software.
Cheers!
IsmaelOctober 24, 2013 at 6:23 am in reply to: text disappearing in a layerslider after uploading it to a page #180104Hi!
The page you provided is not available: http://indiatravelz.com/?page_id=5669
Please post the login details here and set it as a private reply. What steps did you do to insert the text that disappear? We want to recreate it when we check your site.
Regards,
IsmaelOctober 24, 2013 at 6:21 am in reply to: Remove white space between main content/sidebar and footer #180102Hey mikaelsv!
You can add this on your custom.css or Quick CSS:
.content, .sidebar { padding-top: 50px; padding-bottom: 10px; }
Adjust the bottom padding.
Regards,
IsmaelOctober 24, 2013 at 6:16 am in reply to: How to change color of enfold tabs and alternate header text #180096Hi!
If you want to change the style of a specific page or post, you can use the Google Chrome Inspect Element. Look for the unique css body class.
On the example above, the page’s unique selector is .page-id-2251 but in your case the page id is .page-id-544. We can use it to change the element within that page.
.page-id-544 .main_color .toggler, .main_color .toggle_content { background: blue; color: white; } .page-id-544 .main_color .toggler:hover { background: red; color: white; }
Best regards,
IsmaelOctober 24, 2013 at 6:11 am in reply to: Main content dissapears below 767ps wide. Can't figure out why. #180093Hey!
You can continue to add custom css modifications to your child theme’s style.css.
Regards,
IsmaelHi timfl!
You can adjust their position. Add this on your custom.css or Quick CSS:
#top .avia-post-nav { position: absolute; top: 70%; } .avia-post-prev { left: 10%; } .avia-post-next { right: 10%; }
Cheers!
IsmaelHey!
Edit config-templatebuilder > avia-shortcodes > icon.php. Replace everything in it with this code: http://pastebin.com/f8p2hKAz
You can now place a title or alt text on Font Icon with link. The hover will not show up unless you place set a link.
Best regards,
IsmaelHey!
What changes are you trying to make on the Styling option?
Did you use set the Blog on Enfold > Theme Options > “Where do you want to display the blog?” ? If yes, then you should change the Blog Style on Enfold > General Settings > Blog Style. If you add the Blog using the Blog Post element, don’t set the page as Blog on Theme Options.
Regards,
IsmaelHey!
Can you please give us a link to your website? Please add this on your custom.css or Quick CSS:
#footer .widget_nav_menu ul:first-child>.current-menu-item, #footer .widget_nav_menu ul:first-child>.current_page_item, .widget_nav_menu ul:first-child>.current-menu-ancestor { top: 0; width: auto; } .footer_color .widget_nav_menu ul:first-child>.current-menu-item, .footer_color .widget_nav_menu ul:first-child>.current_page_item, .footer_color .widget_nav_menu ul:first-child>.current-menu-ancestor { background: red; } #footer .widget_nav_menu ul:first-child > .current-menu-item > a { position: relative; margin-top: -2px !important; }
Best regards,
Ismael -
AuthorPosts