Forum Replies Created
-
AuthorPosts
-
I can’t see your page, but it makes sense for the footer to scroll in responsive case.
So the curtain effect is not diasabled ( only for stretched Layout available ) but if the footer will be more than 80% of screen-height it will scroll.just for info:
First : put this to your child-theme functions.php:
add_filter('avf_show_curtains_media_option', '__return_true');
after doing that there will be a second option to set: “Select to switch back to scroll footer content with page when footer height exceeds selected limit.”
by the way – the curtain effect works very well – and i think you can remove the info about beta
add this to your child-theme functions.php:
function custom_avf_post_css_create_file( $create ){ return true; } add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );
see f.e. a portfolio masonry:
https://webers-testseite.de/portfolio-masonry/i set the popup in child-theme functions.php to:
( that is just for that page-id on my code )function add_modal_popup_einstellungen() { if(is_page(42989)){ ?> <script type="text/javascript"> window.addEventListener("DOMContentLoaded", function () { (function($) { $('.av-masonry-entry').on('click', function(e){ e.preventDefault(); }); $('.av-masonry-entry').magnificPopup({ removalDelay: 700, type:'iframe', midClick: true, }); $(document).on('click', '.popup-modal-dismiss', function (e) { $.magnificPopup.close(); }); })(jQuery); }); </script> <?php } } add_action('wp_footer', 'add_modal_popup_einstellungen');
some css ( in this case the opacity is set to 0.97 that you can see it is a lightbox – if it is 1 – it’s nearby your example page from above.
#top.page-id-42989 .mfp-bg { background-color: #FFF; opacity: 0.97; } #top.page-id-42989 .mfp-iframe-scaler { width: 100%; height: 80vh; overflow: hidden; } #top.page-id-42989 .mfp-iframe-holder .mfp-close, #top.page-id-42989 .mfp-image-holder .mfp-close { color: #000; }
if this is what you need: https://www.11-76.com/themes/giant/index-SINGLE-IMAGE.html#
and you like to style the new content like a page – why not use a page? – those “pages” should be only set to template blank – no header – no footer.
or – if you like to use it with a portfolio grid ( or a masonry with portfolios ) – you can change that opening behavior to show the linked portfolio in a lightbox ( modal window ) and not to open a new page. The trick is then to not make the look and feel like a lightbox ( but to show as white full overlay ) with just a close button on that.
i’m just participant as you – so no private content could be seen by me.
but maybe the edited tip will help you more than the inline-popup solutionI have to honestly confess here that I haven’t read the entire content of the topic, but if with a little thinking you don’t give the team member element, but a color-section (or grid-row) an ID and give it the class mfp-hide, the color-section should be able to appear as similar in a lightbox.
if this is not enough – why don’t you open a page in a lightbox from your site.
Place that button and insert a manual link with the url of your wanted pages with addendum:?iframe=true
see here https://webers-testseite.de/my-website/
PS: If it is an external page link – you must have allowed on that external link to be running in an iframe.
for that i allowed it via htaccess by:Header set X-Frame-Options "ALLOW-FROM https://webers-testseite.de/"
but on internal pages ( X-Frame-Options “sameorigin” ) this is not needed
ok – I thought – inspired by the ajax search results – there would be an easy way to do this.
so don’t put any work into it – obviously no one else has been interested yet.ok – if you do not see it in your text alb element – but it is on nearly all websites i inspect the DOM – that script ( see screenshot of kriesi.at above ) is present.
And see here for your testpage from private area:
Edit it seems that it comes from a browser plugin ( password-manager ) – but that is a nogo. For all I care on the called page – but to insert it within the content of a page … headshakebtw. browsing on chrome :
<script type="text/javascript" src="chrome-extension://fooolghllnmhmmndgjiamiiodkpenpbb/injectedPasswordless.js"></script>
so try not on a local install – try on a live site.
look here on board for the DOM :this might not be a matter of enfold – because a lot of website do have this script – but maybe one of us has info what it does.
On textblock i looks this way:
Each time when i switch between visual and text mode there is another line:
May 9, 2023 at 9:12 am in reply to: on Mega Menu show in front of list points the featured image #1406846Thanks that was the right hint:
function avf_wp_nav_menu_objects($sorted_menu_objects, $args) { // check menu name if ($args->menu->name != 'menu-name') return $sorted_menu_objects; // edit the menu objects foreach ($sorted_menu_objects as $menu_object) { // searching for menu items linking to posts or pages // can add as many post types to the array if ( in_array($menu_object->object, array('post', 'page', 'portfolio', 'attachment')) ) { // set the title to the post_thumbnail if available // thumbnail size is the first parameter of get_the_post_thumbnail() $menu_object->title = (has_post_thumbnail($menu_object->object_id) && $menu_object->menu_item_parent != 0) ? get_the_post_thumbnail($menu_object->object_id, 'thumbnail') . $menu_object->title : $menu_object->title; } } return $sorted_menu_objects; } add_filter('wp_nav_menu_objects', 'avf_wp_nav_menu_objects', 10, 2);
but now I have decided to hide it only in the main menu, because in the hamburger menu, the little pictures at the top level items look good.try using that little snippet in your child theme functions.php:
function show_date_with_shortcode() { date_default_timezone_set('Europe/Berlin'); setlocale(LC_TIME, 'de_DE.UTF-8'); $date = date_i18n( 'l \d\e\n ' . get_option( 'date_format' ) . ' ' . get_option( 'time_format' ). ' \U\h\r' ); return $date ; } add_shortcode( 'show_date', 'show_date_with_shortcode' );
use it as shortcode in your text :
[show_date]
this is for my german language a binding word \d \e \n will end in Freitag den 17.04.1968
the rest will be corresponding to your lang settings – but if you like to have that binding word f.e. the then use \t\h\e
if you don’t like the time in this shortcode – just remove that part:
$date = date_i18n( 'l \d\e\n ' . get_option( 'date_format' ) );
___________
or style a kind of calendar sheet:
function datum_shortcode() { date_default_timezone_set("Europe/Berlin"); setlocale(LC_TIME, 'de_DE.UTF8'); $year = date_i18n('Y'); $day = date_i18n('d'); $month = date_i18n('F'); $weekday = date_i18n('l'); $weekdaycolor = date_i18n('l') == 'Sonntag' ? 'red': 'gray' ; $uhrzeit = date_i18n( get_option( 'time_format' ) ); $datum = '<div id="calendar_sheet"><div class="month-year"><span class="month">'.$month.'</span><span class="year">' .$year.'</span></div><div class="day ' .$weekdaycolor.'">'.$day.'</div><div class="weekday">'.$weekday.'</div><div class="time">'.$uhrzeit.'</div></div>'; return $datum; } add_shortcode('calendar_sheet', 'datum_shortcode');
here use it as shortcode in your text:
[calendar_sheet]
some css for it:
#calendar_sheet{ text-align:center; display: inline-block; border:1px solid #eee; border-top:15px solid #0076ba; -webkit-box-shadow: 5px 5px 2px #ccc; -moz-box-shadow: 5px 5px 2px #ccc; box-shadow: 5px 5px 2px #ccc; background:#fafafa; padding: 5px; min-width: 150px; } .month-year .month, .month-year .year { padding: 0 5px } .day { font-size:48px; font-weight: bold; font-family: times; padding: 10px 0 0; } .day.red { color: red; } #calendar_sheet .time { font-size: 24px; }
see both shortcodes in action on: https://enfold.webers-webdesign.de/3-columns/
again adjust to your language: so for red Sundays change that Sonntag to Sunday in weekday color ;)
and change to your local time in these lines:date_default_timezone_set("Europe/Berlin"); setlocale(LC_TIME, 'de_DE.UTF8');
- This reply was modified 1 year, 6 months ago by Yigit.
i saw in the code of postslider.php a lot “post_type” notations so i do not try to use it to disturb any other setting. Thats the reason for posttype ;)
thanks for adding it to core.how about my other question – is it possible to have a sorting like in ajax search results ?
ok – allready posted to include a priority. Sorry did not read again.
thanks – in most cases the simple setting will do the job – but i guess similar to newsbox it will be better to have the oportunity to choose which ID is influenced.
May 7, 2023 at 10:02 pm in reply to: Mega menu with photos – how hide photos on mobile menu? #1406678you see the code above – that is only my test environment. – just change to your needs:
10 Washington Avenue in San Rafael front exterior<br><br><img class="aligncenter size-square" src="https://www.thomashenthorne.com/wp-content/uploads/2023/03/10-Washington-Ave-San-Rafael-78-of-78-HERO-cropped-180x180.jpg" alt="10 Washington Avenue in San Rafael front exterior" width="180" height="180" />
guess that will work – but i think that the size on the link will determine the image used ( in this case 180×180 )
ok – i edited the postslider.php – and for what i like to have i only added just before output article this:
( on Enfold 5.6 in postslider.php just before line 937 )if( get_post_type( $the_id ) == 'attachment' ){ $post_class .= 'posttype-attachment '; }
or more common – if you like to add any post-type as class on articles:
$posttype = get_post_type( $the_id ); $post_class .= 'posttype-'.$posttype. ' ';
so if the post_type is attachment this will be found as class to slide_entry. After that it is easy to change the link behavior to not open the attachment page but to open directly a lightbox.
Apple has its own update philosophy ;)
They don’t offer newer updates for older devices. You have to buy the new devices. Where would that end up if you could run newer versions of iOS on old iPads? They go so far as to build locks into their software ( Ventura OS ) to exclude these devices; so that you can’t even install them manually. With Mac desktop devices, there are probably hacks to get around this lock.But you can close that now – i go with my snippet above – and set those new alb elements to display none for devices with less iOS than 13.
Can you make a screenshot where to find that new feature. I#m looking to image element – and can not find that feature.
this snippet does change all combo-widget boxes.
But there was an example here on forum, or maybe i saw it on github :
function my_avf_combo_box_image_size( $image_size, array $args, array $instance ){ if( $args['widget_id'] == ( 'avia_combo_widget-1' ) ){ $image_size = 'square'; } return $image_size; } add_filter( 'avf_combo_box_image_size', 'my_avf_combo_box_image_size', 10, 3 );
with a selction via widget_id –
change theme name
? why – that is the trick with a child-theme it looks for the parent theme by name.
( see style.css of the child-theme ):/* Theme Name: Enfold Child Description: Childtheme fuer Enfold Version: 1.0 Author: Kriesi Author URI: http://kriesi.at Template: enfold */
if there is no template : enfold ?
______
btw. – there are ways to obfuscate the parent theme : see docu
May 6, 2023 at 7:35 am in reply to: website.com/?cat=-1 –> Any idea, why this query string is there? #1406556As mentioned above why don’t you use:
/%category%/%postname%/
one disadvantage – if you got 2 or more Categories for one Post the first category name will be inserted in that permalink.you can style on advanced tab an image hover effect
– if you choose the first one “slightly increase the image size” it will be better to have the border on the image container:.av-styling-circle .avia_image { border: 4px solid #bf207f; }
for all the other hover effects it is better to have the border on a parent container:
.av-styling-circle .avia-image-container-inner { border: 4px solid #bf207f; }
the point is that even if the images are within your media gallery, they will not be used on the blog or single page. Images recalculated by Enfold are used there. Thats what i wrote above. Only if you are using the portfolio element or blog element on a page there is on the second tab of the element editor the option to choose the image used ( that is the custom setting ) – and on that custom setting you can have original image. But is it advisable to use original sizes of the images in a 3 or 4 grid display where the image widths can hardly exceed 300px? 20 or more featured images on a page with 900px ( and more ) – what would that do to performance?
And on blog and archive pages ( category pages) these options are not available.
In the blog it is by default : portfolio (‘width’ => 495, ‘height’ => 400)
In the single post, depending on whether with sidebar or without :
entry_without_sidebar ( ‘width’ => 1210, ‘height’ => 423 ) or entry_with_sidebar ( ‘width’ => 845, ‘height’ => 321 ) are used.The second solution above not to take the nearby aspect ratio of magazine is to have your own image size registered – but then a recalculation of the thumbnails has to be done.
a second footer widget area is complex to get.
Here is the substitute for footer.php on the basis of enfold 5.6 – you can upload it to your child-theme root directory: https://pastebin.com/ndwDX00Ythat is for child-theme functions.php:
/***** insert the options dialog to Enfold Footer segment. Just after the other footer_columns ****/ function my_avf_option_page_data_add_elements( array $avia_elements = array() ){ $slug = 'footer'; $id = 'footer_columns'; $new_element = array( "slug" => "footer", "name" => __("Footer Columns Two", 'avia_framework'), "desc" => __("How many columns should be displayed in your second footer", 'avia_framework'), "id" => "footer_two_columns", "required" => array( 'display_widgets_socket', '{contains_array}all;nosocket' ), "type" => "select", "std" => "4", "subtype" => array( __('1', 'avia_framework') =>'1', __('2', 'avia_framework') =>'2', __('3', 'avia_framework') =>'3', __('4', 'avia_framework') =>'4', __('5', 'avia_framework') =>'5', __('6', 'avia_framework') =>'6') ); $found = false; $index = 0; foreach( $avia_elements as $key => $element ){ $index++; if( isset( $element['id'] ) && ( $element['id'] == $id ) && isset( $element['slug'] ) && ( $element['slug'] == $slug ) ) { $found = true; break; } } if(! $found ){ $avia_elements[] = $new_element; } else { $avia_elements = array_merge( array_slice( $avia_elements, 0, $index ), array( $new_element ), array_slice( $avia_elements, $index )); } return $avia_elements; } add_filter( 'avf_option_page_data_init', 'my_avf_option_page_data_add_elements', 10, 1 ); /*** Register new footer widget areas */ function footer_two_widgets_init() { $footer_two_columns = avia_get_option( 'footer_two_columns', '6' ); for ($i = 1; $i <= $footer_two_columns; $i++){ register_sidebar(array( 'name' => 'Second-Footer-Column '.$i, 'before_widget' => '<section id="%1$s" class="widget clearfix %2$s">', 'after_widget' => '<span class="seperator extralight-border"></span></section>', 'before_title' => '<h3 class="widgettitle">', 'after_title' => '</h3>', 'id'=>'av_footer_two_'.$i )); } } add_action( 'widgets_init', 'footer_two_widgets_init' );
some css :
#footer .container > div { display: flex; flex-flow: row wrap; align-items: stretch; } #second-column-row { position: relative; margin-top: 10px; }
see: https://webers-web.info/#footer
____________But maybe there are different approaches to achieve what you want – so describe a bit more what you want to do:
May 5, 2023 at 2:08 pm in reply to: Accordion – do not close previous tab when opening new one #1406530but what you are showing in your screenshot seems to be no accordion ! ;)
is it a tab container? – yes it is.A Tab Element is exactly to save space and to make content more compact.
The newly added size with 16:9 f.e.
add_image_size( 'new-blog-size', 495, 260, true ); function my_custom_sizes( $sizes ) { return array_merge( $sizes, array( 'new-blog-size' => __( 'Blog Imagesize' ), ) ); } add_filter( 'image_size_names_choose', 'my_custom_sizes' );
if you like to use that new image-size in the code snippet above – you had to recalculate the thumbnails.
There are plugins for that f.e.: force regenerate thumbnailsif your nick belongs to your page – i think i know what you like to go for.
Enfold uses different sources for the images on different elements. For example on a single post it uses the entry_with_sidebar size!
This is a ratio at : 2.6
the magazine ratio is nearby: 1.89 – so try this one if it is ok for you
On a blog in grid view – it uses the portfolio image size. – But you can change that by child-theme functions.php snippet:try:
add_filter("avf_post_slider_args", function($atts, $context) { if( $context == "archive" ) { $atts['type'] = 'grid'; $atts['columns'] = 3; $atts['preview_mode'] = 'custom'; $atts['image_size'] = 'magazine'; } return $atts; }, 10, 2);
_______
now : if it has to be that 16:9 aspect-ratio:
you can either redefine the entry_with_sidebar size to that ratio or set your own image-size in that ratio.
Both solutions need a recalculation of your thumbnails.which one of that code? here: https://kriesi.at/support/topic/full-screen-hamburger-menu-with-video-background/#post-1404878
if you read you see the warning : line-breaks will not work on that
use this:
function add_video_to_hamburger_background() { ?> <script type="text/javascript"> (function($){ $('#header').one('click', '.av-main-nav-wrap' , function() { setTimeout( function() { $('.av-burger-overlay').append('<div class="video_burger_bg"><video autoplay="" loop="" class="video_style" style="width: 2226px; height: 1252px; top: 0px; left: -248px;"><source src="https://milano.beantown.website/wp-content/uploads/menu.m4v" type="video/mp4"><source src="https://milano.beantown.website/wp-content/uploads/menu.webm" type="video/webm"><source src="https://milano.beantown.website/wp-content/uploads/menu.ogv" type="video/ogv"><img src="https://milano.beantown.website/wp-content/uploads/menu.jpg" alt="background"></video></div>'); },300); }); })(jQuery); </script> <?php } add_action('wp_footer', 'add_video_to_hamburger_background');
can you show us your site?
just a little question – did you activate the advanced layout builder for your custom post type – via filter: avf_alb_supported_post_types ?
and is it a CPT or do we have here a custom template – based on archive ? -
AuthorPosts