Hi,
I just installed Subscribe to Comments reloaded wordpress plugin and it adds some HTML under comment form. The issue is I see the HTML code under the comment form instead of text with links in it. Is there anything in your theme which may cause it? You can see an example on the following page:
http://customizewp.com/top-free-5-social-sharing-wordpress-plugins-comparision/
Hi, could enfold reproduce this effect with the logo at the center and another logo mixing within the menu when scrollin
http://99u.com/articles
Hi dpower19!
That is not possible at the moment. Please request the feature here: https://kriesi.at/support/topic/enfold-feature-requests
Regards,
Ismael
Yes
Here is the home page
http://www.cutradio.it/
The con ten slider is on the top
The first image (More steps Beyond has the width and height attribute (but is showed full)
The Third (Atlantico Negro) is resize because I set a css attribute awesome as I red in a post, but I don’t like this solution because I had some editor on the post
Best regards
Hi Jouse, strange how It did not transferred with other tables, I changed it manually…
Anyhow, if you would like, we can go back and try to fix the auto scrolling issue (isn’t it just applying the js for #top on each #” there is?).
Could I ask for another advice: How can I make the H2 to be a normal ‘unicase’?
Thanks!
Hi Yigit, thanks for the code, there is still a couple of issues:
1. The logo is no longer visible on mobile
2. The code I added for desktop is wrong as it has also brought the footer up into the view.
Regards,
Steven
What is this? Widget? Or custom programming?
http://www.goodingco.com
Id like to do something like this over the top of my full screen slider. How do I go about doing it?
-
This topic was modified 12 years, 1 month ago by
lengleson.
This reply has been marked as private.
I have placed a Layerslider onto my home page with slider style of max-width: 1030px;.
Randomly, and usually during transitions, the colour behind the slider images (white) flickers or dissapears all together to reveal the grey of the page background. In the Appearance I have set the colour to #ffffff.
Also, there was a line beneath the slider which I remove using
.home .container_wrap, .home .avia-layerslider {
border-top-style: none;
}
However there is still a very faint line appearing. You can view the development site here.
Any help on these issues would be much appreciated! Thank you!
Hey Markus!
You can go to Enfold theme options > Header tab and add/change/remove social icons http://i.imgur.com/dvBrhjn.jpg
Then you can add following code to Quick CSS in Enfold theme options under Styling tab to increase the size of social icons
#top .social_bookmarks li a { font-size: 18px; }
Regards,
Yigit
Hey!
Please refer to Josue’s post here https://kriesi.at/support/topic/how-to-remove-tooltips/#post-224464
Please add following code to Quick CSS and adjust as needed
.page-id-982 .team-member-name { font-size: 15px; }
You should right click on Chrome or Firefox and click Inspect Elements to find page ID then change the ID in custom CSS code to match your page ID
Best regards,
Yigit
Hi Gabe!
Open header.php and look for line 203, after the div#main opens put this code:
<?php if(is_archive()){ ?>
<img src="_IMAGE_">
<?php } ?>
If you want to use a Avia shortcode simply replace the img code something like this:
<?php echo do_shortcode("[SHORTCODE HERE]"); ?>
You can generate the shortcode in a separate Page (without entering ALB).
Cheers!
Josue
Hey!
You should modify archive.php file in root folder and loop-archive.php file inside wp-content\themes\enfold\includes folder, however you are going to need to hire a freelance developer on Microlancer or Codeable for that kind of customization as it is beyond the scope of support we can provide. You can also request quote here.
Regards,
Yigit
Hi!
Please add following code to Quick CSS instead
.flex_column .avia-slideshow.avia-builder-el-no-sibling {
margin-top: 11px;
}
Cheers!
Yigit
Hey tusing!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.avia-slideshow { margin-top: 0; }
Cheers!
Yigit
Hey!
You can add following code to Quick CSS in Enfold theme options under Styling tab to remove arrows on mobile
@media only screen and (max-width: 768px) {
#top .avia-slideshow-arrows a { display: none; }}
As there is no hover possibility on touch-screen, that would be the only solution if you do not want to display arrows.
Best regards,
Yigit
Hi Peter
Thanks – I deactivated it – it’s better but now the title is hidden at the top:
http://www.copenhagenfilmcompany.dk/2014/films/films-2/#short-doc
I thought that W3TC was compatible with ENFOLD but maybe I don’t need to use it?
If it’s causing problems I would rather avoid it.
best
N
Hey!
Please add following code to Quick CSS in Enfold theme options under Styling tab
#top .bbp_widget_login .bbp-logged-in .button { left: 0; top: 96%; }
#top .bbp_widget_login { margin-bottom: 20px; }
.single-topic #bbpress-forums div.bbp-reply-author { width: 100%; }
a.bbp-author-avatar { position: static!important; }
Best regards,
Yigit
Error went away with the new code but slideshow still does not autoplay
example
Hi NaRanJiTo78!
Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
#top.page-id-91 .pricing-table li {
min-height: 72px;
}
This will not set them dynamically and instead it sets all of the heights to a minimum height. Because each table is its own element they don’t have horizontal relationships. This means that an item in the first table doesn’t have any idea what the height of an item in the second table is.
So setting a minimum height with the above css is the only way to expand the row heights so that they match up with that pricing table style.
Regards,
Devin
Where in the code should I do?
<?php
global $avia_config;
$blank = isset($avia_config['template']) ? $avia_config['template'] : "";
//reset wordpress query in case we modified it
wp_reset_query();
//get footer display settings
$the_id = avia_get_the_id(); //use avia get the id instead of default get id. prevents notice on 404 pages
$footer = get_post_meta($the_id, 'footer', true);
$footer_widget_setting = !empty($footer) ? $footer : avia_get_option('display_widgets_socket');
//check if we should display a footer
if(!$blank && $footer_widget_setting != 'nofooterarea' )
{
if( $footer_widget_setting != 'nofooterwidgets' )
{
//get columns
$columns = avia_get_option('footer_columns');
?>
<div class='container_wrap footer_color' id='footer'>
<div class='container'>
<?php
do_action('avia_before_footer_columns');
//create the footer columns by iterating
$firstCol = 'first';
switch($columns)
{
case 1: $class = ''; break;
case 2: $class = 'av_one_half'; break;
case 3: $class = 'av_one_third'; break;
case 4: $class = 'av_one_fourth'; break;
case 5: $class = 'av_one_fifth'; break;
}
//display the footer widget that was defined at appearenace->widgets in the wordpress backend
//if no widget is defined display a dummy widget, located at the bottom of includes/register-widget-area.php
for ($i = 1; $i <= $columns; $i++)
{
echo "<div class='flex_column $class $firstCol'>";
if (function_exists('dynamic_sidebar') && dynamic_sidebar('Footer - column'.$i) ) : else : avia_dummy_widget($i); endif;
echo "</div>";
$firstCol = "";
}
do_action('avia_after_footer_columns');
?>
</div>
<!-- ####### END FOOTER CONTAINER ####### -->
</div>
<?php } //endif nofooterwidgets ?>
<!-- end main -->
</div>
<?php
//copyright
$copyright = avia_get_option('copyright', "© ".__('Copyright','avia_framework')." - <a href='".home_url('/')."'>".get_bloginfo('name')."</a>");
//you can also remove the kriesi.at backlink by adding [nolink] to your custom copyright field in the admin area
if($copyright && strpos($copyright, '[nolink]') !== false)
{
$kriesi_at_backlink = "";
$copyright = str_replace("[nolink]","",$copyright);
}
if( $footer_widget_setting != 'nosocket' )
{
?>
<footer class='container_wrap socket_color' id='socket' <?php avia_markup_helper(array('context' => 'footer')); ?>>
<div class='container'>
<span class='copyright'><?php echo $copyright . $kriesi_at_backlink; ?></span>
<?php
echo "<nav class='sub_menu_socket' ".avia_markup_helper(array('context' => 'nav', 'echo' => false)).">";
$avia_theme_location = 'avia3';
$avia_menu_class = $avia_theme_location . '-menu';
$args = array(
'theme_location'=>$avia_theme_location,
'menu_id' =>$avia_menu_class,
'container_class' =>$avia_menu_class,
'fallback_cb' => '',
'depth'=>1
);
wp_nav_menu($args);
echo "</nav>";
?>
</div>
<!-- ####### END SOCKET CONTAINER ####### -->
</footer>
<?php
} //end nosocket check
}
else
{
echo "<!-- end main --></div>";
} //end blank & nofooterarea check
//display link to previeous and next portfolio entry
echo avia_post_nav();
echo "<!-- end wrap_all --></div>";
if(isset($avia_config['fullscreen_image']))
{ ?>
<!--[if lte IE 8]>
<style type="text/css">
.bg_container {
-ms-filter:"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $avia_config['fullscreen_image']; ?>', sizingMethod='scale')";
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $avia_config['fullscreen_image']; ?>', sizingMethod='scale');
}
</style>
<![endif]-->
<?php
echo "<div class='bg_container' style='background-image:url(".$avia_config['fullscreen_image'].");'></div>";
}
?>
<?php
/* Always have wp_footer() just before the closing </body>
* tag of your theme, or you will break many plugins, which
* generally use this hook to reference JavaScript files.
*/
wp_footer();
?>
<a href='#top' id='scroll-top-link' <?php echo av_icon_string( 'scrolltop' ); ?>></a>
<div id="fb-root"></div>
</body>
</html>
And what should I write? <iframe ???></iframe>?
Hi!
Try with this line instead:
elements.prettyPhoto({ social_tools:'',slideshow: 5000, deeplinking: false, overlay_gallery:false, default_width: ww, default_height: wh, autoplay_slideshow: true});
Cheers!
Josue
After making the change I am now getting the following error using Firebug
SyntaxError: invalid object initializer
if($.fn.prettyPhoto)
elements.prettyPhoto({ social_tools:'',slideshow: 5000, deeplinking: false, overlay_gallery:false, default_width: ww, default_height: wh, autoplay_slideshow});
}
If I remove autoplay_slideshow and revert back to normal it works as expected.
Look up the prettyPhoto documentation it says to use autoplay_slideshow:true. When I changed it to this the gallery loads without error but it still doesn’t autoplay.
-
This reply was modified 12 years, 1 month ago by
Estland.
Looks like more things are randomly starting to break… list’s aren’t displaying icons, progress bars are only showing text now and not a colorful animated bar…
What happened?
This reply has been marked as private.
Hi,
I put my portfolio together about 2 weeks ago and it stopped working correctly today. They use to show my set featured images but now they just saw a white box.
You can see what I mean at devrhycom.com/portfolio (password: 1234)
Please let me know if you could help me fix what went wrong. I have Enfold verison 2.5.2 (just updated to see if that would fix it but didn’t) and I have WordPress version 3.8.1
No I haven’t, but they’ve worked with no issue until the last couple of days. We did no upgrading of any plugin in that time. We are using the latest versions of Akismet (2.5.9), Gravity Forms (1.8.4), W3 Total Cache (0.9.3), and WordPress SEO by Yoast (1.4.24). I find it very odd that this is only two pages that are affected and the other one we solved by shortening the page title. It’s just in the blog posts. This is not happening on site pages.
We are also seeing comments like this: https://kriesi.at/support/topic/black-screen-when-published-enfold-theme/