Forum Replies Created
-
AuthorPosts
-
Hey DROR,
Yes, that’s possible. You can refer to this post: https://developer.wordpress.org/themes/basics/template-hierarchy/
Best regards,
NikkoHi Mike,
The creator of the thread haven’t gotten back on us yet, so we don’t know if the issue is resolved on her end.
Best regards,
NikkoHey Nathan,
I think the right code is:
<!--more-->
also make sure that it’s in Text mode not Visual, since < and > are converted to > and < and not working properly.
Best regards,
NikkoHey zakthorpe,
Can you give us temporary admin access? so we can check for the backend settings.
Best regards,
NikkoHey atrixdave,
The best approach and get best results for this is use some css codes using media queries: https://www.w3schools.com/css/css_rwd_mediaqueries.asp and also multiple images that are designed for specific width or devices. You can add this css code in Quick CSS located in Enfold > General Styling, it would look something like this:
/*For Desktop in 1600px width*/ @media only screen and (max-width:1600px) { #sign-up .av-parallax-inner.main_color.avia-full-stretch { background-image: url('image_for_1600px_width.jpg'); } } /*For ipad landscape*/ @media only screen and (max-width:1024px) { #sign-up .av-parallax-inner.main_color.avia-full-stretch { background-image: url('image_for_1600px_width.jpg'); } } /*For ipad portrait*/ @media only screen and (max-width:960px) { #sign-up .av-parallax-inner.main_color.avia-full-stretch { background-image: url('image_for_1600px_width.jpg'); } }
Hope this helps.
Best regards,
NikkoFebruary 14, 2017 at 9:13 pm in reply to: Product search field for woocommerce at the beginning of store category pages. #747108Hi,
Can you try to post a link to your page? also if you can give us a draft on where you want to place it.
Best regards,
NikkoFebruary 14, 2017 at 9:09 pm in reply to: Darker Font and Container For Woocommerce Booking and Appointment plugin #747106Hi,
Third party plugins are small programs that are added into your web browser/site to provide additional functionality, basically any plugins in wordpress is a third party plugin.
Best regards,
NikkoHey iedigitaldesign,
The login details you gave doesn’t work, please check. The set_is_vat_exempt() function is not part of the Enfold themes function, have you added some custom code in functions.php? Also regarding the email problem, can you give us steps on how we can replicate the same issue?
Best regards,
NikkoHi,
Try adding this css code in Quick CSS (located in Enfold > General Styling):
.search-results .tribe_events { margin-top: 0 !important; }
Let us know if this helps :)
Best regards,
NikkoHey Chris,
Can you give us temporary admin access? so we can check the backend. Just place the details in Private Content when you reply.
Best regards,
NikkoHi,
It’s really hard to figure out what is causing the issue, are you using a plugin to cache the whole site? all the errors posted in the screenshot does seem to point to object cache. Probably the caching settings is misconfigured that’s why after clearing the cache it does work properly.
Best regards,
NikkoHey alefavetto,
I think it’s possible and after checking your site, it seems that you have already done it.
Best regards,
NikkoHi,
Sure, try adding this css code in Quick CSS (located in Enfold > General Styling):
.home .blog-meta a.small-preview { width: 250px; height: 250px; } .home .blog-meta a.small-preview img { width: 100%; height: 100%; }
Currently the image size you are using is 180px, you can change the 250px from the code. :)
Cheers!
NikkoHi,
Can you try to delete enfold.css then copy enfold_en.css, paste it in the same folder and just rename it to enfold.css. Hopefully this one should work. :)
Best regards,
NikkoHi,
Glad we could help :)
Cheers!
NikkoFebruary 14, 2017 at 12:56 pm in reply to: How can I display all the recent post featured images in the same size #746871Hey pimroll,
In the post slider option try to change Preview Image Size to Choose the preview image size manually. Hope it helps :)
Yes, you can
Best regards,
NikkoHey Antonio,
Yes, you would need to do few things however.
1. Use a child theme, instructions can be found here: http://kriesi.at/documentation/enfold/using-a-child-theme/
2. Override the post slider module, check here for instructions: http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/
3. The name of the file that needs to changed is: postslider.php.
4. Edit postslider.php in the child theme and find this code (line 431-450):if($show_meta && !empty($excerpt)) { $meta = "<div class='slide-meta'>"; if ( $commentCount != "0" || comments_open($the_id) && $entry->post_type != 'portfolio') { $link_add = $commentCount === "0" ? "#respond" : "#comments"; $text_add = $commentCount === "1" ? __('Comment', 'avia_framework' ) : __('Comments', 'avia_framework' ); $meta .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>"; } $markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)); $meta .= "<time class='slide-meta-time updated' $markup>" .get_the_time(get_option('date_format'), $the_id)."</time>"; $meta .= "</div>"; if($blogstyle !== "elegant-blog") { $output .= $meta; $meta = ""; } }
cut this code and paste it below this code which is just below it:
$markup = avia_markup_helper(array('context' => 'entry_content','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)); $excerpt = apply_filters( 'avf_post_slider_entry_excerpt', $excerpt, $prepare_excerpt, $permalink, $entry ); $output .= !empty($excerpt) ? "<div class='slide-entry-excerpt entry-content' $markup>".$excerpt."</div>" : "";
Hope this helps.
Best regards,
NikkoFebruary 14, 2017 at 12:29 pm in reply to: Can I remove the WC Cart icon from the header on mobiles #746851Hey studio3enfold,
Try to add this css code in QUick CSS (located in Enfold > General Styling):
@media only screen and (max-width:767px) { .responsive #top .cart_dropdown { display: none !important; } }
Let us know if this helps.
Best regards,
NikkoHey Kevin,
That feature isn’t available on the Enfold unfortunately. Try to check the contact form plugins like contact form 7 which are more focused on contact forms functionality, the feature you need might be available there.
Best regards,
NikkoHey tremblayly,
Try to add this css code in Quick CSS (located in Enfold > Geneal Styling):
div .columns-3 .products .product { width: 32.33%; } div .columns-2 .products .product { width: 49%; }
Let us know if this helps, if it’s not working please give us temporary admin access, the login details you gave doesn’t work.
Best regards,
NikkoHey classywebsites,
It’s hard for us to determine why that is added, it might be one of the plugins installed. Try to disable all plugins then create a new post add same information and check if the code is still modified. If it is you can try to enable one by one while doing the steps before to identify which plugin is causing it.
Best regards,
NikkoFebruary 14, 2017 at 12:04 pm in reply to: Display text after the price in shop and on single product page #746833Hey Lyse,
I could see the code working and can see this text after the price of a product in category and single product page (link in private content):
(To view wholesale prices, login to your wholesale account)
As for the css, what would you like to achieve? or change in it’s appearance?
Best regards,
NikkoFebruary 14, 2017 at 11:58 am in reply to: Custom thumbnails not changing after regenerating? #746831Hey boemedia,
Please post us your login credentials (in the “private data” field), so we can take a look at your backend.
Login credentials include:
- The URL to the login screen.
- A valid username (with full administration capabilities).
- As well as a password for that username.
- permission to deactivate plugins if necessary.
Best regards,
NikkoFebruary 14, 2017 at 11:56 am in reply to: Link portfolio item to external URL doesn't work with AJAX #746830Hi,
Can you post a link to the page mentioned? you can put it in the Private Content when you reply, if you want to keep it private. Also we would like to ask for temporary admin access? so we can see the setting you have on that page. Please place the details on Private Content also.
Best regards,
NikkoHey Danielle,
There are 2 options I think can help you with that.
1. Use 2 Advertising Area Widget, make the 2nd one’s title empty then we will add some css code adjust it.
2. Use a text widget and add a some html codes using links and images.Which of the two solutions would you prefer? (and of course we would assist you whatever you choose) :)
Best regards,
NikkoHi,
You can put any number as long 6 hexadecimal values, or you can refer to this post: http://www.w3schools.com/cssref/css_colors.asp
As for nextpage I think the code is wrong, you should use:
<!--nextpage-->
Hope this helps.
Best regards,
NikkoHey Joel,
The easiest way to do that is to use a plugin. If you don’t like to use a plugin, the option is to use a child theme: http://kriesi.at/documentation/enfold/using-a-child-theme/ then copy header.php of the Enfold theme and paste on the child theme then tweak the header.php code and insert the gtm code.
Best regards,
NikkoFebruary 14, 2017 at 11:24 am in reply to: Adding parent as title for page sidebar navigation #746815Hey neuropetvet,
Can you give us a link to thread you have mentioned? also a link to a page in your site where you want the title to put in a sidebar so we can atleast see what layout you are using.
Best regards,
NikkoFebruary 14, 2017 at 11:20 am in reply to: Part of Advanced layout Editor is not beeing processed right #746812Hi,
Can you give us temporary admin access? so we can see the issue as well. Just place the details in Private Content when you reply. Also, just to confirm the issue shows up on the page (link below in private content) but if we preview it in the backend, everything is good?
Best regards,
NikkoHey enzowillemstad,
Yes, I think it can be done you just need to create the categories for example breakfast, lunch, dinner, then add the categories to the portfolio item. Create a page called moments, use the portfolio grid, select the categories breakfast, lunch, dinner and by default it shows all, it should have 3 filters breakfast, lunch, dinner. For the other 2 filters you mentioned, same process can be done. Hope this helps.
Best regards,
Nikko -
AuthorPosts