Forum Replies Created
-
AuthorPosts
-
lool to your shortpixel options – maybe there is something confused.
i see your logo even on my mac chrome – and i got a 27” Monitor – so good luckThanks – can you look at: https://kriesi.at/support/topic/enfold-4-6-great-job-my-compliments/#post-1132139
i think this must be a forgotten array – because when i add only that array all works ( h-tag choose on all sliders)September 1, 2019 at 10:41 am in reply to: How do you remove remove the Enfold Theme by Kriesl at the bottom of the page. #1132651the input field on Enfold Options is the Copyright field: After your entry add this to it:
[nolink]Nevertheless – it is a strange behaviour. Today i downloaded again a complete Enfold and it has again a different zip name!
August 31, 2019 at 9:42 am in reply to: Enfold 4.6 – Great job you did there again. My big compliment #1132505Another only cosmetic thing is: could you give an ordernumber of 90 to the audioplayer.
The squence with: video / easy-slider / slider full-width / audio / slider full-size is a bit disordered – the above will end in:
a squence with: video / audio / easy-slider / slider full-width / slider full-sizeThis is not really a mistake. The Advanced Layerslider as a bonus to the theme is not to be found within the plugins. The update notification is correct, but since this is only a bundle and not the standalone plugin, the integrated version always lags a bit behind the current version.
If you can not live with the update notification you can hamper its function on that “Plugin”- put this to child-theme functions.php:
//Remove layerslider update nag function remove_ls_update_notification($value) { if($value) { unset($value->response['https://YOUR-DOMAIN/wp-content/themes/enfold/config-layerslider/LayerSlider/layerslider.php'] ); return $value; } } add_filter('pre_site_transient_update_plugins', 'remove_ls_update_notification');complete the absolute path by “your-domain”
maybe just open those elements – and save again. On my end i tranfered old alb shortcodes from an older installltion to an new one – and every class is still there.
August 30, 2019 at 12:16 pm in reply to: Enfold 4.6 – Great job you did there again. My big compliment #1132290And another thing on Headings / Iconlist – there is now the option to choose even div and p tag – so you could also leave it to the user what he wants for a small list as tag.
And perhaps here it would be better to only choose the heading tag vor all list points. List Items are equivalently – so it might be better to have all the same tag. But i can live with editing each!
so maybe this is obsolete on line 610:
we had to style it then – but i guess that is ok – and easier done for even standard users than to change the tag itself.if( $this->iconlist_styling == 'av-iconlist-small' ) { $title_el = 'div'; $iconlist_title = '_small'; }August 30, 2019 at 9:34 am in reply to: LayerSlider 6 unable to deactivate, delete or update #1132215See the code above – it works – just complete the absolute path ( YOUR-DOMAIN ) to that plugin.
August 30, 2019 at 8:50 am in reply to: LayerSlider 6 unable to deactivate, delete or update #1132184don’t panic – is it so bad that a wonderful plugin which is packed on top of the theme is lagging a bit behind with the updates?
Just let that liitle Warning as it is : With Enfold 4.6 you are on : “You have version 6.8.1 installed”
;) https://youtu.be/izDzsFe1o4I
A little more coolness – ok it is a littel red light nowEdit: if you want to get rid only of that littel red One on the dashboard you can put this to child-theme functions.php:
//Remove layerslider update nag function remove_ls_update_notification($value) { if($value) { unset($value->response['https://YOUR-DOMAIN/wp-content/themes/enfold/config-layerslider/LayerSlider/layerslider.php'] ); return $value; } } add_filter('pre_site_transient_update_plugins', 'remove_ls_update_notification');August 30, 2019 at 8:34 am in reply to: LayerSlider 6 unable to deactivate, delete or update #1132176it works without activating it. As a bundle only the premium features are missing.
You don’t have to activate it.The Updates comes with the enfold updates.
Deactivate : under Layout Builder Tab in Enfold Options: “Integrated (Bundled) LayerSlider Plugin”
you an choose some options.Off Topic : Now und Enfold 4.6 there are the wonderfull new Options to choose just above that field:
August 30, 2019 at 1:22 am in reply to: Enfold 4.6 – Great job you did there again. My big compliment #1132139and the Possibility of H-Tag Choose on Slider Captions
On Easy Slider the array is in –
do you have only forgotton to add the array for that options field to fullwidth and fullscreen slider ?
array( 'type' => 'template', 'template_id' => 'heading_tag', 'theme_default' => 'h2', 'context' => __CLASS__ ),Everything works as it should if it is in the code. ???
btw. for your Anbefalinger Page maybe you give this a chance in Quick css.
.wptww-testimonials-list.wptww-clearfix.design-3 { display: flex; flex-flow: wrap row; justify-content: center; } .wptww-quote.wp-medium-4.wpcolumns { flex: 1 1 33%; min-width: 330px; max-width: 450px; }this gives a equal height to the boxes and on responsive case a good looking too.
change that rule to:
i changed the background-color to that – because your other boxes got that color:.referencer .entry-content-wrapper { border: 1px solid #333; background-color: #eef5ff; padding: 30px; padding-right: 30px; }August 29, 2019 at 10:19 pm in reply to: Svg logo full width and full height of header centered above menu #1132111no css – it is just in the svg code
you can open each svg in a goog text-editor ( Mac: Sublime text / Win : notepad++)
on top there is the “header” info – i just changed that info in your svg to:<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="100%" height="300px" viewBox="0 0 1139.7 133.1" preserveAspectRatio="xMidYMin slice" xml:space="preserve">if you upload that new svg to your site – maybe with this svg it is easier to find a css solution for your header!
but you can download that svg from above.August 29, 2019 at 6:46 pm in reply to: Imported a demo, but would like to revert to what I had before #1132046i’m not shure – does it overwrite even all pages/posts?
On your warning : Importing the dummy data will overwrite your current Theme Option settings. Proceed anyways?
there is only mentioned that the settings will be lost.By the way – this is the reason why i hide these Options for Customer Installations.! by :
function hide_theme_options() { echo '<style> #avia_options_page .goto_demo, #avia_options_page #avia_demo { display: none !important; } </style>'; } add_action('admin_head', 'hide_theme_options');put this into a color-section you like to “unite” – give to the color-section a custom-class f.e.: together
choose for your 1/2 columns equal height – but you can have space between columns. Put this to your quick css:
( the equal height generates a surrounding container – we can use for that ).together .flex_column_table.av-equal-height-column-flextable { border: 1px solid #333; background-color: #eff7fb; padding: 30px; }If you have allready a lot of images uploaded – there are (temporary) Plugin like Force Regenerate Thumbnails after you have done all that above.
in Addition to that i do have another entry for child-theme functions.php:
function av_return_100(){ return 65; } add_filter('jpeg_quality', 'av_return_100'); add_filter('wp_editor_set_quality', 'av_return_100');the uploaded images are decompressed – cropped – and then saved as uncompressed files on default – this code does induce that a compression is done.
If you look to your uploads folder – you will see that some of the 1500px x 630px images – Enfold generates – are bigger (sometimes much bigger) than the orignal image uploades ( with 2000px and more)all things goes to your child-theme functions.php:
this is how you can avoid responsive Image functionality in WP:
add_filter('wp_get_attachment_image_attributes', function($attr) { if (isset($attr['sizes'])) unset($attr['sizes']); if (isset($attr['srcset'])) unset($attr['srcset']); return $attr; }, PHP_INT_MAX); add_filter('wp_calculate_image_sizes', '__return_false', PHP_INT_MAX); add_filter('wp_calculate_image_srcset', '__return_false', PHP_INT_MAX); remove_filter('the_content', 'wp_make_content_images_responsive');this is too WP related:
// Remove unneeded WP image sizes add_filter( 'intermediate_image_sizes_advanced', 'prefix_remove_default_images' ); // Remove default image sizes here. function prefix_remove_default_images( $sizes ) { // do NOT remove small and medium sizes, they are used in backend Media Library! // unset( $sizes['small']); // 150px // unset( $sizes['medium']); // 300px unset( $sizes['large']); // 1024px unset( $sizes['medium_large']); // 768px return $sizes; }And this is for Enfold Functionality: Choose the needed Image Formats yourself:
some are commented-out feel free to get rid of them too – allthough the reason for usage is described:// Disable loads of Enfold & WP image sizes upon upload // do image sizes manually, double-size with high compression for retina screens // use Photoshop to set exact double size and quality between Q30 and Q40 add_action('init', 'remove_enfold_image_sizes'); function remove_enfold_image_sizes() { // do NOT remove widget size, is used in backend portfolio items! // remove_image_size('widget'); remove_image_size('square'); remove_image_size('featured'); remove_image_size('featured_large'); remove_image_size('portfolio'); remove_image_size('portfolio_small'); remove_image_size('gallery'); remove_image_size('magazine'); remove_image_size('masonry'); remove_image_size('entry_without_sidebar'); remove_image_size('entry_with_sidebar'); remove_image_size('shop_thumbnail'); remove_image_size('shop_catalog'); remove_image_size('shop_single'); remove_image_size('shop_gallery_thumbnail'); }Yes – Hello – nice to meet you
August 29, 2019 at 11:31 am in reply to: WPML – one set of Theme Options for ALL languages? #1131856i guess you have to synchronize manually. But Enfold got this option under Import Export : “Export Theme Settings File”
Open your language that is your standard language – export that file.
Change to the other languages and import that theme settings file each.
After that – you had to look into the quick css – because every rule which is site specific ( with page-id oder postid) had to be tranfered to the other language ( each translated page / post got his own ID )Please think of : each language in WPML got his own Enfold Options Page!
so even the quick css for a new generated Language is empty. You had to synchronize it by yourself.Every Code in Quick CSS which is set with a page-id is for the other langage not valid – every translated page/post got his own ID ( thats what unique means)
August 29, 2019 at 7:51 am in reply to: Hoster-Wechsel – Mit FTP-Download & ohne normales Plug-In Backup #1131804Off topic:
Zunächst tut mir das sehr leid mit deinem Bruder. Meine volle Anteilnahme. Alleine die Vorstellung, dass einer meiner gleichalten oder jüngeren Anverwandten vor der Zeit gehen sollte garantiert Dir mein Mitleid im wahrsten Sinne des Wortes. Wir haben einen Cousin auf diese Weise verabschieden müssen.Weiter zum Thema – nein das war nicht meine Absicht, dass du Dich hier zurückziehst – und keine Frage ist zu dumm um sie ( nicht ) zu stellen.
Wir haben alle klein angefangen – aber ich versichere Dir die Lernkurve ist steiler als du denkst. Vorausgesetzt man liest und überfliegt nicht die Antworten. Leider wollen hier viele der User nur schnelle Lösungen – picken sich den angebotenen Code heraus ohne die Erklärungen dazu mit zu verinnerlichen. So wird einem zwar hier geholfen, aber Lernerfolg daraus ist gleich null.
Prinzipiell sind mir Beiträge der beschneidenen Art lieber, als die jenigen die Hier auftreten als hätten Sie für ihre 50Euro das absolute Recht innerhalb der nächsten Stunde Hilfestellung zu empfangen. Da gibt es hier auch ein paar Spezies. Die Mods hier in Ihrer vornehmen Zurückhaltung übergehen solche Beiträge dann, ich kann mir dann nicht verkneifen ein paar Worte loszulassen.Ich bin nicht mehr ganz der Jüngste, und habe gelernt Internetseiten mit Dreamweaver von “Hand” zu erstellen. Daher sind meine CSS Kenntnisse nicht schlecht. Was Javascript und php betrifft bin ich auch noch ein Lernender. Vieles was ich hier anbiete ( bearbeitete Enfold Element etc ) ist aus der reinen Logic abgeleitet.
Man kann die Beiträge hier eigentlich recht lange noch bearbeiten. bzw hättest du hintenan, nochmals die Präzisierung deines Themas anstellen können. Du siehst das auch Peter (Dude) viel Zeit investiert hat ( und das geht wie gesagt weit über den Support hier hinaus ) und bei manchen Antworten dadurch Überschneidungen entstanden sind. Das hat mir halt nicht gefallen, denn ja ich zwacke mir dies Zeit von meinem eigentlichen Tun und Schaffen ab.
Die Entschuldiging nehme ich gerne an, war aber nicht nötig. –___________
zum Thema : wie gesagt, schau dir die Seite von Wayback Machine an, da sind noch einige Sachen vorhanden, und wenn man mit Enfold eine Weile gearbeitet hat, dann kann man auch das Layout der Seiten erahnen.
August 29, 2019 at 6:50 am in reply to: Svg logo full width and full height of header centered above menu #1131798all my details are on my Nick and Avatar
I also don’t think I can contribute anything else to the final code here from Ismael – maybe a different approach to solving and looking at the svg code. Maybe you can also optimize it.
svgs can also be forced within their code to have a decided exterior behavior.F.e. an enable background option in svg is sometimes not the best solution – and a
preserveAspectRatio=”xMinYMid meet” in the svg header-section could be best if you like to shrink to the middle etc. pp. – this could help to make the css code simpler.
See here how the logo reacts with only inline parameter change: https://webers-testseite.de/Latitude65logo.svgor can you live with this behaviour ( height stays at a given value – centered Logo but – borders run out on left and right: https://webers-testseite.de/Latitude65logo2.svg
-
This reply was modified 6 years, 2 months ago by
Guenni007.
by the way in that case of 2 columns this is the fastest method. If you got multiple columns you can let the flex-direction to normal but give to the items an order number:
see here in action with code : https://webers-testseite.de/defined-order/
Anyway the link you gave to us – could be used f.e. to make a whole iconbox clickable. Iconboxes can have link on Icon and Title.
The first link in it will be tranformed to the iconbox itself. In this case you had to give that custom-class to the iconbox.if you like to put it in media-query you can decide when this behaviour starts to work.
you can play a little with flex styling f.e. take wrap-reverse instead of wrap and see what happens.
space- between (instead of space-around) would line the outer items to the borders of the container
this is a good – but german site – but you will see on the images what happens on changing styling and you can dynamically change by Radio Button the layout: https://www.mediaevent.de/css/display-flex.html
For that example page above the 1180px seems to be a good starting point to work for flex model.@media screen and (max-width:1180px) { .av-tab-section-tab-title-container { display:flex !important; flex-flow: row wrap-reverse; justify-content: space-around; align-items: center; width: 100vw !important; min-width: 0 !important; padding: 0; margin: 0; left: 0 !important; } #top .av-section-tab-title { padding: 0 ; flex: 0 1 auto; min-width: 20%; } .av-outer-tab-title { display: inline-block; } .av-tab-section-image, .av-tab-arrow-container { background-position: center center; position: relative; top: 0; left: 50%; transform: translateX(-50%); } .av-tab-section-icon { display: block; text-align: center; position: relative; top: 20px; left: 50%; transform: translateX(-50%); padding-bottom: 40px; } }August 28, 2019 at 7:09 pm in reply to: Probleme mit Hoster Wechsel ! Es existiert nur FTP Download des alten Hosters #1131714you can play with this :
#top .av-section-tab-title { padding: 0 ; flex: 0 1 auto; min-width: 10%; }and this is the arrow color:
#top .av-tab-arrow-container span { background-color: #900 }maybe 10% is enough for your setting.
For tab-section with icons – we had to complete the code above with :
.av-tab-section-icon { display: block; text-align: center; position: relative; top: 20px; left: 50%; transform: translateX(-50%); padding-bottom: 40px; } -
This reply was modified 6 years, 2 months ago by
-
AuthorPosts

