Viewing 30 results - 133,201 through 133,230 (of 142,620 total)
  • Author
    Search Results
  • #227107

    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

    #227097

    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', "&copy; ".__('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>?

    #227096

    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

    #227093

    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 11 years, 10 months ago by Estland.
    #227076

    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?

    #227072
    This reply has been marked as private.
    #227070
    jbennettrhycom
    Participant

    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

    #227058

    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/

    #227046

    In reply to: Add Google Font

    #227045

    Hi Jorge!

    Here’s a response from the plugin author:
    http://wordpress.org/support/topic/scripting-guard

    Regards,
    Josue

    Nevermind. Was just a custom code plugin. Ive removed it

    Update.

    These lines are essentially on every page underneath the header and above content of every single page. As well as displayed on the 1st post.

    Can someone please assist

    Hey!

    Seems you already managed to add the phone number, you can increase it with this CSS:

    .social_header .phone-info span {
        font-size: 24px;
    }

    And this one will swap position with the icons:

    .noLightbox.social_bookmarks {
        float: right;
    }
    .sub_menu {
        left: 0;
    }

    Regards,
    Josue

    #226987

    Hi!

    I personally don’t know, but here’s a user who tried with PhotoSwipe:
    https://kriesi.at/support/topic/photoswipe-lightbox/

    Best regards,
    Josue

    #226976
    Vermishelle
    Participant

    Hello,

    after the latest update, active menu item is no longer underlined on my single-page http://www.skorosvadba.ru

    Only the first item in top menu is underlined all the time.

    #226966

    Thanks Devin,

    How do I customize the archive.php file to change the layout and add a full width photo below the menu and above the content?

    Thanks,
    Gabe

    #226963

    In reply to: Two Background images

    Can nobody helpster me?

    I want a image topleft, and a extra background image thats repeats.
    Please……;)

    Marcel

    #226953

    Hi motylanogha!

    You can add a video slider and image slider right under it on your page and using custom CSS you can hide image slider on desktop and display it on mobile and other way around for video slider. If that works for you, please post the link to your page so we can provide you custom CSS code

    Best regards,
    Yigit

    #226950

    Hi,

    Open js/avia.js and look for line 962:

                        elements.prettyPhoto({ social_tools:'',slideshow: 5000, deeplinking: false, overlay_gallery:false, default_width: ww, default_height: wh});
    

    Replace it by this:

                        elements.prettyPhoto({ social_tools:'',slideshow: 5000, deeplinking: false, overlay_gallery:false, default_width: ww, default_height: wh, autoplay_slideshow});
    

    Regards,
    Josue

    Hi!

    Glad you figured it out! Let us know if you have any other questions or issues

    Regards,
    Yigit

    Got it! I was missing a } on one of my codes. Thanks for your help.

    Hey!

    Do you mind creating a temporary admin login and posting it here privately so i can take a look?

    Cheers!
    Yigit

    Okay, tried it by deactivating all the plugins and it’s still not working.

    #226941

    Hi indirapril!

    Please add following code to Quick CSS in Enfold theme options under Styling tab to display post navigation on mobile

    @media only screen and (max-width: 767px) {
    .responsive #top .avia-post-nav {
    display: block;
    }}

    Edit: Please use this plugin to change "You are here" http://wordpress.org/plugins/codestyling-localization/

    Cheers!
    Yigit

    • This reply was modified 11 years, 10 months ago by Yigit.

    By the way, I’ve been adding it to Quick CSS.

    #226935

    Hm, I think the URL at the browser’s adress line should be like the breadcrumbs, so the URL for this special portfolio-item should be:

    meineseite.de/farbkunst/portfolio-uebersicht/magicmoment

    but currently it is:

    meineseite.de/werke/magicmoment

    and this is just not right.

    I have tried to add this to my functions.php as Dude suggested here, but it has no effect:
    https://kriesi.at/support/topic/breadcrumbs-with-portfolio/

    It’s really confusing … but the breadcrumbs above in the screenshot show the right hierarchy.

    ——————–

    EDIT:

    I found the same behaviour at the ENFOLD demo theme:

    main URL/starting page:
    http://kriesi.at/themes/enfold/

    “Portfolio 3 column” link:
    http://kriesi.at/themes/enfold/portfolio/portfolio-3-column/

    Then, at this page, I click at the first portfolio item, which is:
    http://kriesi.at/themes/enfold/portfolio-item/single-portfolio-23-slider-3/

    Also here is a part of path missing, i.e. “/portfolio/”

    • This reply was modified 11 years, 10 months ago by BeeCee. Reason: Added as example the ENFOLD demo theme

    Hey!

    Please try deactivating all active plugins and check if that helps. Code is still not being applied.

    Best regards,
    Yigit

    Thanks for your reply. I’ve added the new code you have given and it’s still not working.

    #226916

    Hi David!

    Please add following code to Quick CSS in Enfold theme options under Styling tab
    1-

    #top .fullsize .template-blog .post .entry-content-wrapper > * { float: left; }

    2-

    #top .fullsize .template-blog .blog-meta { margin: 0; }

    3- Please go to Settings > Media and increase thumbnail image size and regenerate thumbnails using http://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Yigit

Viewing 30 results - 133,201 through 133,230 (of 142,620 total)