-
AuthorSearch Results
-
February 20, 2014 at 11:23 pm #227107
In reply to: Auto-rotating gallery images
Error went away with the new code but slideshow still does not autoplay
February 20, 2014 at 11:17 pm #227103Hi 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,
DevinFebruary 20, 2014 at 11:10 pm #227097In reply to: Display page content in widget
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>?
February 20, 2014 at 11:05 pm #227096In reply to: Auto-rotating gallery images
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!
JosueFebruary 20, 2014 at 11:00 pm #227093In reply to: Auto-rotating gallery images
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.
February 20, 2014 at 10:10 pm #227076In reply to: Portfolio Grid Stopped Working
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?February 20, 2014 at 10:03 pm #227072In reply to: bbPress Forum Responsive Glitch
This reply has been marked as private.February 20, 2014 at 9:59 pm #227070Topic: Portfolio Grid Stopped Working
in forum Enfoldjbennettrhycom
ParticipantHi,
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.1February 20, 2014 at 9:16 pm #227058In reply to: enfold theme blog black screen issue
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/
February 20, 2014 at 8:49 pm #227046In reply to: Add Google Font
Hey Andy!
Please take a look at these topics:
https://kriesi.at/support/topic/adding-header-font/
https://kriesi.at/support/topic/custom-fonts/Cheers!
JosueFebruary 20, 2014 at 8:47 pm #227045In reply to: Codestyling localization issues
Hi Jorge!
Here’s a response from the plugin author:
http://wordpress.org/support/topic/scripting-guardRegards,
JosueFebruary 20, 2014 at 8:26 pm #227031Nevermind. Was just a custom code plugin. Ive removed it
February 20, 2014 at 8:20 pm #227025Update.
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
February 20, 2014 at 8:02 pm #227016Hey!
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,
JosueFebruary 20, 2014 at 7:26 pm #226987Hi!
I personally don’t know, but here’s a user who tried with PhotoSwipe:
https://kriesi.at/support/topic/photoswipe-lightbox/Best regards,
JosueFebruary 20, 2014 at 7:17 pm #226976Topic: active menu item is not underlined after update
in forum EnfoldVermishelle
ParticipantHello,
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.
February 20, 2014 at 7:05 pm #226966In reply to: How to add an image to the top of my blog page
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,
GabeFebruary 20, 2014 at 7:02 pm #226963In reply to: Two Background images
Can nobody helpster me?
I want a image topleft, and a extra background image thats repeats.
Please……;)Marcel
February 20, 2014 at 6:49 pm #226953Hi 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,
YigitFebruary 20, 2014 at 6:47 pm #226950In reply to: Auto-rotating gallery images
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,
JosueFebruary 20, 2014 at 6:46 pm #226947Hi!
Glad you figured it out! Let us know if you have any other questions or issues
Regards,
YigitFebruary 20, 2014 at 6:44 pm #226945Got it! I was missing a } on one of my codes. Thanks for your help.
February 20, 2014 at 6:43 pm #226944Hey!
Do you mind creating a temporary admin login and posting it here privately so i can take a look?
Cheers!
YigitFebruary 20, 2014 at 6:39 pm #226942Okay, tried it by deactivating all the plugins and it’s still not working.
February 20, 2014 at 6:39 pm #226941In reply to: portfolio navigation on mobile
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.
February 20, 2014 at 6:26 pm #226936By the way, I’ve been adding it to Quick CSS.
February 20, 2014 at 6:25 pm #226935In reply to: Wrong paths/URLs for portfolio items
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/magicmomentbut currently it is:
meineseite.de/werke/magicmomentand 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
February 20, 2014 at 6:22 pm #226933Hey!
Please try deactivating all active plugins and check if that helps. Code is still not being applied.
Best regards,
YigitFebruary 20, 2014 at 6:21 pm #226930Thanks for your reply. I’ve added the new code you have given and it’s still not working.
February 20, 2014 at 5:58 pm #226916In reply to: Enfold > Blog > Excerpt layout
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 -
This reply was modified 11 years, 10 months ago by
-
AuthorSearch Results
Viewing 30 results - 133,201 through 133,230 (of 142,620 total)
-
Search Results
-
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
