Forum Replies Created
-
AuthorPosts
-
Hi,
As I understood, you wanted the “entry-title” to be replaced with the “blog-categories”, I tested the above function and it dose that. The issue is that when we do this it also affects the category and achieve pages, all the posts are not getting the wrong title, they have been replaced with our code :)
Sorry, I don’t have any other solution :)Best regards,
MikeHi,
OK, Please clear your cache: [http://www.refreshyourcache.com/en/home/] and try now :}
I cleared your WP cache :)
Best regards,
MikeHi,
Try this code in the General Styling > Quick CSS field:li#menu-item-burger:before { content: url(https://smartfredrikstad.fw3.no/wp-content/uploads/2017/06/byvaapen-fredrikstad.png); position: absolute; left: -50px; top: 25px; }
Best regards,
MikeHey michellerunge,
Try this code in the General Styling > Quick CSS field:h3.slide-entry-title.entry-title {font-size: 12px !important; } .slide-meta {display:none !important; } .slide-entry-excerpt.entry-content {font-size: 12px !important; line-height: 15px !important;}
Feel free to tinker with the sizes until you see what you like :)
As for the background image, this works:.slide-entry {background-image: url(https://unpackdesign.com.br/wp-content/uploads/2015/07/borafazendo-1500x664.png)!important;}
but your image is too big. Try a smaller image or a color like this:
.slide-entry {background-color: yellow !important; }
Best regards,
MikeHi,
Please clear your cache: [http://www.refreshyourcache.com/en/home/]
Or Can you please include a admin login in the private content area so we can take a closer look.Best regards,
MikeHey lzanoza,
Have you tried disabling your plugins? If that resolves the issue, reactivate each one individually until you find the cause.Best regards,
MikeHey diefleischerei,
Perhaps a plugin would be in order:Best regards,
MikeHi,
Try this code in the General Styling > Quick CSS field:.woocommerce-cart .wc-proceed-to-checkout { display: block!important; }
Best regards,
MikeHey silvercorn,
The round frame is created with css, [border-radius: 100px;] , which can be added in your General Styling > Quick CSS field after your page is created. We can help with this if you build it first and tell up the url, it is also true with your second question :)Best regards,
MikeHi,
I’m getting 403 (Forbidden) for “/wp-admin/admin-ajax.php”
Possible solutions are the WordPress Memory Limit set via PHP and/or .htaccess!In .htaccess, add the following:
php_value post_max_size 512M php_value upload_max_filesize 512M php_value max_input_vars 5000 php_value max_execution_time 300 php_value max_input_time 300 php_value memory_limit 512M
In wp-includes folder, navigate to default-constants.php, scroll down to around line 35 and change “64M” and “40M” to reflect your new .htaccess memory limits.
e.g;// Define memory limits. if ( ! defined( 'WP_MEMORY_LIMIT' ) ) { if ( false === wp_is_ini_value_changeable( 'memory_limit' ) ) { define( 'WP_MEMORY_LIMIT', $current_limit ); } elseif ( is_multisite() ) { define( 'WP_MEMORY_LIMIT', '512M' ); } else { define( 'WP_MEMORY_LIMIT', '256M' ); } }
This will force WordPress to use 256MB of Memory on a single-site installation, and 512MB of Memory on a Multi-site installation.
Note: Some hosting providers do not allow you to change this or have smaller limits, so consult them if you can’t modify .htaccess and/or default-constants.php
Best regards,
MikeHey Susanne,
Try to update manually via FTP: https://vimeo.com/67209750
Or: http://kriesi.at/archives/the-complete-guide-to-updating-enfold
I recommend backing up with: https://wordpress.org/plugins/duplicator/Best regards,
MikeHey BiancaFrankDesign,
It was in your Secondary Menu, I changed it for you :)Best regards,
MikeHi,
Try adding this to the bottom of your functions.php file.function avia_default_title_filter($current_post) { if(!empty($current_post['title'])) { $heading = is_singular() ? "h1" : "h2"; $cat = get_the_category($current_post['the_id']); $output = ""; //$output .= "<{$heading} class='post-title entry-title ". avia_offset_class('meta', false). "'>"; $output .= "<{$heading} class='post-title entry-title' ".avia_markup_helper(array('context' => 'entry_title','echo'=>false)).">"; $output .= " <a href='".get_permalink()."' rel='bookmark' title='". __('Permanent Link:','avia_framework')." ".$current_post['title']."'>".$cat[0]->cat_name; $output .= " <span class='post-format-icon minor-meta'></span>"; $output .= " </a>"; $output .= "</{$heading}>"; $current_post['title'] = $output; } return $current_post; }
Best regards,
MikeHi,
Try this code in the General Styling > Quick CSS field:#top #header_meta, .alternate_color, .socket_color {background-color: background: #1e5799; background: -moz-linear-gradient(left, #1e5799 0%, #0fa7d9 40%, #0fa7d9 40%, #2989d8 50%, #7db9e8 100%)!important; background: -webkit-linear-gradient(left, #1e5799 0%,#0fa7d9 40%,#0fa7d9 40%,#2989d8 50%,#7db9e8 100%)!important; background: linear-gradient(to right, #1e5799 0%,#0fa7d9 40%,#0fa7d9 40%,#2989d8 50%,#7db9e8 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=’#1e5799′, endColorstr=’#7db9e8′,GradientType=1 )!important; }
Best regards,
MikeHi,
It looks like you are using the Full Width Slider, So open it in the editor, click one of the images, go to the caption tab and enter your text. Choose any other options you would like and save. Note at the bottom you have the choice to “Use first slides caption as permanent caption” should you only want one caption.
Hope this helps :)
Best regards,
MikeHi,
I added this code in the General Styling > Quick CSS field:@media only screen and (max-width: 1440px) { span.avia-no-number, .avia-single-number, div.avia-animated-number-content { font-size: 12px; left: -10px; position: relative; }}
Feel free to tweak the font-size to suit :)
Best regards,
MikeJune 4, 2017 at 2:54 pm in reply to: Masonary gallery lightbox overlay doesn't work on mobile #803602Hey uribinsted,
Try this code in the General Styling > Quick CSS field:@media only screen and (max-width: 767px) {.avia-builder-el-8 {height: 1440px!important; }}
The issue was the text box element had a height of 100% which was covering the images so they were not clickable in mobile :)
Best regards,
MikeHey sitesme,
You can easily add google fonts, please refer to this link: https://kriesi.at/support/topic/new-custom-font/
If you have a custom font or your own .ttf or .otf file, please refer to this link: http://css-tricks.com/snippets/css/using-font-face/
Or you can try using this plugin http://wordpress.org/plugins/wp-google-fonts/Best regards,
MikeHi,
Try this code in the General Styling > Quick CSS field:.container {padding: 0px!important; }
Best regards,
MikeJune 4, 2017 at 2:18 pm in reply to: How to right align the "you might be interest in" text? #803589Hey FlatText,
Are you saying that the post title “Navigating through change” is not relevant, and you wish it matched that category “Banking, Financial services, Publications” ?Best regards,
MikeHey geotectives,
Do you mean on a layer in the slider? Can you create a screenshot of what you mean with your url?Best regards,
MikeJune 4, 2017 at 1:46 pm in reply to: Open a lightbox with iframe using a button element or a button in slideshow? #803581Hi,
Perhaps I don’t understand the issue, because I’m have no issue with scrolling the popup on the site.Best regards,
MikeHi,
Can you please create a gradiant that you like and paste the code, we can help with using it in those elements.
Best regards,
MikeHi,
Try downloading the newest version: 3.0.7 and updating your child theme via FTP.
Be aware if you have made custom changes to them your changes will be lost.
I recommend backing up with https://wordpress.org/plugins/duplicator/Best regards,
MikeHi,
OK, I changed the code to this:@media only screen and (max-width: 767px){ .responsive #top .products .product:nth-child(2n+10) { clear: both!important; } .responsive #top .products .product:nth-child(2n+12) { clear: initial!important; }}
and now it’s working :)
Best regards,
MikeJune 3, 2017 at 8:37 pm in reply to: fullwidth easy slider caption title and caption text adjustments #803459Hey bemodesign,
Try this code in the General Styling > Quick CSS field:@media only screen and (min-width: 425px) { h2.avia-caption-title {font-size: 15px!important; } .avia-caption-content {font-size: 10px!important; } .av_slideshow_full .container.caption_container {top: 80%!important; } #top .avia-slideshow-button {padding: 1px 5px 1px 5px!important; margin-top:1px!important} } @media only screen and (min-width: 767px) and (max-width: 1020px) { h2.avia-caption-title {font-size: 25px!important; } .avia-caption-content {font-size: 12px!important; } .av_slideshow_full .container.caption_container {top: 30%!important; } #top .avia-slideshow-button {padding: 5px 5px!important; } } @media only screen and (min-width: 1023px) { .av_slideshow_full .container.caption_container {top: 25%!important; }}
Best regards,
MikeHi,
Glad to hear, we will close this now. Thank you for using Enfold.Best regards,
Mike -
AuthorPosts