Viewing 30 results - 14,641 through 14,670 (of 244,619 total)
  • Author
    Search Results
  • #1414387

    sorry to be that fast in asking for help and then fixing it by my self. :-)
    I just added this to QUICK CSS:

    .page-id-438 main.content {
      padding: 0;
    }

    while the number 438 is the ID of the certain page where i wanted to fix this.

    >> I really love the forum and the support of enfold. Over the years i learned that much so that sometimes i can solve things myself without your great help. And that, although you are extremely quick with your proposed solutions!!!

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1414384

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1414381

    ok – now i tried to do it with a font file
    i only uploaded that teams icon : font name is teams so i used:

    function avia_add_custom_social_icon($icons) {
    $icons['Teams'] = 'teams';
    return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    
    function avia_add_custom_icon($icons) {
        $icons['teams']  = array( 'font' =>'teams', 'icon' => 'ue800' , 'display_name' => 'Teams Link');
        return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);

    see: https://enfold.webers-webdesign.de/3d-icons/#footer

    #1414379

    Hi again,
    I think i found a way to force it full width inside the plugin and without using the “fullwidth Revolution Slider” module provided by enfold.
    In the RevSlider (Premium) Plugin > Layout > Advanced settings there is a toggle “respect ratio” and “enable layer upscaling”… both turned ON and the Slider embedded by pasting the provided code it works now.

    #1414378

    Hi Günter. Thank you very much for the feedback. Could you please help me in this regard?
    Or should I just reinstall the previous version of Enfold. Can I download the “old” version somewhere? Thanks for the help.

    Best regards, Andreas

    #1414377

    Hey kreativeseite,

    Thank you for using Enfold.

    This is “only” a warning and does not have a negative effect.

    We have fixed it in 5.6.5

    To get rid of it please replace enfold\config-templatebuilder\avia-shortcodes\blog\blog.php

    with the content of

    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_5_6_4/config-templatebuilder/avia-shortcodes/blog/blog.php

    Do not forget to make a backup of the original file for a fallback and clear server and browser cache.

    If you need help let us know.

    Best regards,
    Günter

    #1414373

    ok – your mentioned code – your font is called fontello or do you use the existing : entypo-fontello font.
    then your code is wrong with the name of the font

    next : on docu there is an example code – using images instead of font icons . You will have the opportunity to have better social icon instead f.e:
    from : https://iconduck.com/icons/185336/teams
    ( here with 40px icon – but adapt it to your needs )

    #top .social_bookmarks li,
    #top .social_bookmarks li a {
      width: 40px;
      height: 40px;
    }
    
    #top #wrap_all .av-social-link-teams a:before{
        content: "";
        width: 40px;
        height: 40px;
        display: inline-block;
        vertical-align: middle;
        background: url(/wp-content/uploads/teams.png) no-repeat center center;
        background-size: contain;
    }
    

    the link you can set in options on enfold
    see: https://enfold.webers-webdesign.de/#footer

    #1414372
    This reply has been marked as private.
    #1414365

    Hi,
    I set the caption size for you on the DE version and cleared your cache plugin
    Enfold_Support_2676.jpeg WPML can be tricky because you need to ensure that you are making the changes in both languages and then clear the plugin cache to see the changes.
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    #1414364

    Hi,
    To remove the text-transform so the text shows as it is typed in the backend, and to lower the text some, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top .av-inner-tab-title {
    	text-transform: none;
    }
    #top .av-tab-no-icon.av-tab-no-image .av-inner-tab-title {
        margin-bottom: 0;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1414363

    Hi,
    Thanks, I found that you have a header script added to the page that didn’t have a closing tag, I added it for you and now the sidebar is correct:
    Enfold_Support_2674.jpeg
    please clear your browser cache and check.

    Best regards,
    Mike

    #1414359

    you can surround your “blocks” (h6 p and ul) in text-mode by div with a custom class – f.e.: <div class=”no-column-break”></div>

    and then :

    .no-column-break {
      break-inside: avoid-column;
    }
    <div class="no-column-break">
    <h6>Hvilke fordele har WooCommerce ift. at oprette en webshop?</h6>
    WooCommerce er en fleksibel og brugervenlig e-handelsplatform, der integreres sømløst med WordPress. Nogle af de primære fordele inkluderer:
    
    Brugervenlighed: Let at installere og opsætte, selv for brugere uden tekniske færdigheder.
    <ul>
     	<li>Tilpasning: Et stort udvalg af temaer og plugins giver mulighed for at tilpasse webshoppen til dit brand og design.</li>
     	<li>Produktstyring: Nem håndtering af produkter, kategorier, lagerbeholdning og priser.</li>
     	<li>Sikkerhed: Regelmæssige opdateringer sikrer en pålidelig og sikker webshop oplevelse.</li>
     	<li>Stor fællesskabsstøtte: En aktiv brugerbase og et stort udvikler fællesskab tilbyder support og ressourcer.</li>
    </ul>
    </div>
    <div class="no-column-break">
    <h6>Hvordan adskiller WooCommerce sig fra andre e-handelsplatforme?</h6>
    WooCommerce skiller sig ud på flere måder:
    <ul>
     	<li>WordPress-integration: Det er en integreret løsning til WordPress, hvilket gør det nemt at tilføje e-handelsfunktionalitet til en eksisterende WordPress-hjemmeside.</li>
     	<li>Skalerbarhed: Det er velegnet til både små og store webshops, da det tilbyder en bred vifte af udvidelser og tilpasningsmuligheder.</li>
     	<li>Åben kildekode: Det er baseret på åben kildekode, hvilket betyder, at det er gratis at bruge og muligt at tilpasse efter behov.</li>
     	<li>Fleksibilitet: Det er let at tilføje og administrere produkter, integrere betalingsmetoder og udvide funktionaliteten via plugins.</li>
    </ul>
    </div>
    <div class="no-column-break">
    <h6>Hvordan hjælper WooCommerce med at gøre styringen af en webshop nemmere?</h6>
    WooCommerce er designet med brugervenlighed i tankerne:
    <ul>
     	<li>Intuitivt kontrolpanel: Et brugervenligt kontrolpanel giver let adgang til produkter, ordre, lager og andre indstillinger.</li>
     	<li>Responsivt design: Webshoppen vises pænt på både computere og mobile enheder, hvilket er afgørende for en god brugeroplevelse.</li>
     	<li>Indbygget betalingsintegration: Muligheden for at integrere populære betalingsgateways gør det nemt at håndtere transaktioner.</li>
    </ul>
    </div>
    <div class="no-column-break">
    <h6>Hvilke udvidelser er tilgængelige for WooCommerce?</h6>
    WooCommerce har et bredt udvalg af udvidelser og plugins:
    <ul>
     	<li>Betalingsgateways: Tilføj forskellige betalingsmuligheder, såsom QuickPay, Bambora, PayPal, Stripe og mange flere!
    Forsendelsesmetoder: Integrer med forskellige forsendelsesudbydere for at tilbyde forskellige leveringsmuligheder til dine kunder.</li>
     	<li>Produktanmeldelser: Lad kunderne give anmeldelser, hvilket øger troværdigheden og tilliden til dine produkter.
    Salgsovervågning: Få indblik i salgsstatistikker og kundeaktivitet for at optimere din webshop.</li>
     	<li>Hos ICONIQ bygger vi også moduler Gutenberg som er kompatible med WooCommerce, samt integrerer de fleste systemer du arbejder med.</li>
     	<li>Hvorfor er WordPress et ideelt valg til at drive en webshop gennem WooCommerce?</li>
    </ul>
    </div>
    <div class="no-column-break">
    <h6>WordPress er en af de mest populære CMS-platforme med mange fordele:</h6>
    <ul>
     	<li>Brugervenlighed: Nem at bruge og administrere indhold, selv for dem uden tekniske færdigheder.</li>
     	<li>Stor fællesskabsstøtte: En stor og aktiv brugerbase giver let adgang til support og ressourcer.</li>
     	<li>SEO-venlighed: WordPress er godt optimeret til søgemaskiner, hvilket hjælper med at forbedre webshoppenes synlighed online.</li>
     	<li>Skalerbarhed: Det er velegnet til både små og store webshops, da det tilbyder en bred vifte af udvidelser og tilpasningsmuligheder.</li>
    </ul>
    </div>
    <div class="no-column-break">
    <h6>Gutenberg’s fordele for WooCommerce webshop:</h6>
    Gutenberg gør det lettere for webshop-ejere, at skabe en imponerende og kraftfuld webshop oplevelse uden at skulle ty til kompleks kodning. Med Gutenberg’s blokredigeringsfunktion kan du tage din WooCommerce webshop til næste niveau med visuel kontrol og kreativ frihed over dit indhold.
    
    Du får bl.a. følgende funktioner:
    <ul>
     	<li>Visuel redigering: Se ændringer i realtid.</li>
     	<li>Mere kontrol over layout: Nem organisation af indhold.</li>
     	<li>Nem integration af indhold: Integrer WooCommerce produkter på flere måder med Gutenberg.</li>
     	<li>Fremtidssikret: Fokus på kontinuerlige forbedringer og fokus på performance, uden du skal gøre noget.</li>
     	<li>Mindre kodeafhængighed: Reducer behovet for kompleks kodning.</li>
     	<li>Forbedret brugeroplevelse: Enkel og intuitiv brugergrænseflade.</li>
     	<li>Hastigheden i top: Gutenberg sikre den bedste performance og dermed en bedre brugeroplevelse.</li>
    </ul>
    ICONIQ bygger integrationen mellem Gutenberg og WooCommerce og skræddersyr setuppet, så det passer til dit brand og udtryk.
    
    </div>

    see: https://enfold.webers-webdesign.de/benjamin/

    #1414357

    In reply to: Reducing bloc size

    Hi sofiadadci,

    I’m glad that Mike could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    #1414356

    Hello Enfold team,

    i also have the same warning for my website since i updated to 5.6.4. Warning: Undefined array key “term_rel” in /customers/a/c/7/survivalrunvollenhove.nl/httpd.www/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/blog/blog.php on line 562
    I have already overwrite the PHP file and also removed the file, but the problem keeps coming. I run PHP version 8.2

    Can you help me with this problem

    #1414350
    #1414349

    by the way – you can hamper floating of lists-items to the next text-column or breaking p-tags :
    https://enfold.webers-webdesign.de/multicolumn-text-block/

    in german tradition these stying mistakes are called “Hurenkind” and “Schusterjunge”

    Hurenkind (whore child)
    occasionally called son of a dog, around 1900 freak, since the 1980s sometimes widow. This is the name given to the last line of a paragraph when it is also the first of a new page or column. According to an old prejudice, “son of a dog” did not know who their father was – their origins were unclear. Impoverished, they begged on the streets. If the last line of a paragraph slips to the next page (or paragraph), when you turn to that page you don’t know what content that first line refers to. So the origin of the line at the top of the page was lost like that of a whore child.

    Schusterjunge (cobbler’s boy)
    sometimes also called orphan. This is the name given to a line of a new paragraph at the end of the page or column, which is continued on the following page. In the past, it was often the cobblers who took in orphan boys for apprenticeship. These cobbler boys had to leave the household at the end of the apprenticeship and did not know where they could go afterward for the entire apprenticeship. Cobbler workshops were on the lower floor of the building. If only the first line of a paragraph still hangs on the page, when you read that lone line you don’t know what will happen next. So the continuation of the line at the bottom of the page is uncertain, like the life of a cobbler’s boy.

    #1414342

    Hi BenjaminSpeedtsberg,

    You’re welcome and thanks for using Enfold.

    Best regards,
    Nikko

    #1414338

    Hi Ignacio,

    I think the header is similar to this demo: https://kriesi.at/themes/enfold-construction/
    Please go to Enfold > Advanced Styling > Main Menu Links and change the background color.
    I hope it helps.

    Best regards,
    Nikko

    #1414330

    Hi Alan,

    I’m glad that we could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    #1414321
    Ryan
    Guest

    We have purchased a theme from yourselves in February 2023 for our website which is shown on the below link, my question is do we need to purchase this again for a new website?

    we currently have the theme on http://www.imagine-dsuk.com but would like it to be on http://www.surpro.co.uk do we have to purchase the theme again?

    https://preview.themeforest.net/item/enfold-responsive-multipurpose-theme/full_screen_preview/4519990?_ga=2.171891683.2116307834.1676881728-1900572751.1676881728

    #1414320

    Hi steveorrmedia,

    I’m glad that Ismael could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    #1414316

    Hi Alan,

    Please try to add this CSS code in Enfold > General Styling > Quick CSS:

    @media only screen and (max-width:767px) {
      .responsive #top .av-main-nav #menu-item-search {
        display: none;
      }
    }

    Hope it helps.

    Best regards,
    Nikko

    Hi Sally,

    I’m glad that we could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    #1414314

    Hi peterolle,

    Thanks for sharing your solution :)
    And also thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    #1414304

    Hey rnzrr,

    Thank you for the inquiry.

    Have you tried to temporarily disable SiteGround’s compression options? Doing so will regenerate the scripts and stylesheets, which should address the issues listed above. Additionally, you might need to temporarily disable the Enfold > Performance > File Compression settings and clear the cache afterwards.

    Best regards,
    Ismael

    #1414299

    Hey iishaq,

    Thank you for the inquiry.

    Did you insert an Image with Hotspots element anywhere in the site? Please try to upgrade the theme to version 5.6.4, reconfigure the element, then update the page. You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings afterward.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    To enable the default language switcher, you can follow the instructions in the following documentation.

    // https://wpml.org/documentation/getting-started-guide/language-setup/language-switcher-options/

    Or go to the Enfold Theme Options ▸ Header ▸ Extra Elements ▸ Enfold WPML Language Flags (Global Setting) to enable the theme’s language flags as mentioned above.

    If you want to add a custom language switcher, please check the link below.

    // https://wpml.org/documentation/getting-started-guide/language-setup/language-switcher-options/custom-language-switcher/

    Best regards,
    Ismael

    #1414294

    Hey vantagepointmg,

    Thank you for the inquiry.

    The scripts and stylesheets listed above are already minimized and compressed. However, if you prefer to use a different compression plugin (such as Autoptimize, WP Rocket, WP Super Cache, etc.), you can disable this option by going to the Enfold > Performance > File Compression section of the theme options.

    Best regards,
    Ismael

    Hi ivanglaser,

    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

Viewing 30 results - 14,641 through 14,670 (of 244,619 total)