Forum Replies Created
-
AuthorPosts
-
Hi Elliot!
Sorry, but the code is not working for the manual excerpt.
See here: http://gyazo.com/a953d5f129b01462f5455a11012a942dThe problem is that all excerpts need to be the same length to make the grid look right!
You say: “Or you can edit the excerpt when editing each portfolio post” – but it is just not possible to have every excerpt the same length…
Thanks for further help on this
PeterThat works!
Thanks for your help
PeterHi Josue!
Works fine.
Thanks for your help
PeterHey Josue!
I could find the problem – it’s the code!
My code now:
$boxes = array(
array( ‘title’ =>__(‘Avia Layout Builder’,’avia_framework’ ), ‘id’=>’avia_builder’, ‘page’=>array(‘portfolio’,’page’,’post’,’artists’), ‘context’=>’normal’, ‘priority’=>’high’, ‘expandable’=>true ),
array( ‘title’ =>__(‘Layout’,’avia_framework’ ), ‘id’=>’layout’, ‘page’=>array(‘portfolio’, ‘page’ , ‘post’,’artists’), ‘context’=>’side’, ‘priority’=>’low’),
array( ‘title’ =>__(‘Additional Portfolio Settings’,’avia_framework’ ), ‘id’=>’preview’, ‘page’=>array(‘portfolio’), ‘context’=>’normal’, ‘priority’=>’high’ ),
array( ‘title’ =>__(‘Breadcrumb Hierarchy’,’avia_framework’ ), ‘id’=>’hierarchy’, ‘page’=>array(‘portfolio’), ‘context’=>’side’, ‘priority’=>’low’),
);post was missing…
Cheers
PeterHey Josue
I put define( ‘CONCATENATE_SCRIPTS’, false ); at the very end of wp-config, but ALB is still not working…
Regards
PeterThis reply has been marked as private.HI Josue!
Unfortunately there is an issue with the custom post types.
http://pastebin.com/KyGeT8E9
They work fine until the wordpress seo plugin is turned on.
After that only the portfolio-items work.
On all other post types the ALB will no longer function.
This happens with any version even the new 3.0.1
Regards
PeterHey Josue!
Great – it works perfect now!!
Special thank for your excellent support, I used AVADA and TOTAL before, but the support for ENFOLD is so much better – a class of it’s own…
Cheers!
PeterHey Josue!
http://pastebin.com/AdxRL8TaThe editor is still activated if you need it.
Thanks
PeterHey Josue!
Fantastic, it works perfect for the “galleries post type”.
So i tried to get also a “projects post type” and I duplicated your code and replaced galleries with projects.
But now this is no longer working, again I get a whitescreen as soon I add the code to functions.php.
Do I miss something?
Regards
Peter- This reply was modified 10 years, 1 month ago by pegasso4444.
This reply has been marked as private.This reply has been marked as private.Hi Josue!
I get a blank white page when i use this for the post type “galleries”:
add_filter(‘avf_builder_boxes’,’enable_boxes_on_posts’);
function enable_boxes_on_posts($boxes) {
$boxes[] = array( ‘title’ =>__(‘Avia Layout Builder’,’avia_framework’ ), ‘id’=>’avia_builder’, ‘page’=>array(‘portfolio’, page’, ‘galleries’), ‘context’=>’normal’, ‘expandable’=>true );
$boxes[] = array( ‘title’ =>__(‘Layout’,’avia_framework’ ), ‘id’=>’layout’, ‘page’=>array(‘portfolio’, page’, ‘galleries’), ‘context’=>’side’, ‘priority’=>’low’);
$boxes[] = array( ‘title’ =>__(‘Additional Portfolio Settings’,’avia_framework’ ), ‘id’=>’preview’, ‘page’=>array(‘portfolio’, page’, ‘galleries’), ‘context’=>’normal’, ‘priority’=>’high’ );return $boxes;
}Did I replace NEW_POST_TYPE_SLUG by the slug of the galleries post type as needed??
Thanks for your help
Peter- This reply was modified 10 years, 1 month ago by pegasso4444.
UPDATE:
Sorry for asking. I was able to find the solution…
Cheers
PeterI have to correct me – after clearing all caches it’s working now…
Cheers
PeterHi Yigit!
On line 131 I did as told, but the option is still on the portfolio grid element…
see here:
http://gyazo.com/2570e4aa7592982cf413f8c35ce03746Thanks for help on this
PeterHey Josue!
Yes I am almost there, but the Fullwidth Easy Slider has this animation in the caption:
http://euramobil.info/portfolio-item/full-width-easy-slider-test/How can I get rid of that?
Thanks for your help
PeterThis reply has been marked as private.He Josue!
My site is local, but I made a test site live.
http://euramobil.info/portfolio-item/full-width-easy-slider-test/
Here what I need:
http://gyazo.com/817706f50373768509dc0fbfabdce0dbPhotographers do not want captions in the image, so I need caption in center below the slider
Thanks for your help
PeterHey Josue!
Works fine…
Thanks a lot for your help
PeterWORKS!!
Thanks a lot
PeterHi!
Yes, there was a 20px radius in your css.
I was able to solve the problem:
from original css:
.avia-section.main_color, #avia-menu{
border-radius: 20px;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
}
to:
.avia-section.main_color, #avia-menu{
border-radius: 0px !important;
-webkit-border-radius: 0px !important;
-moz-border-radius: 0px !important;
}Thanks
PeterYes, that works.
After Avada and Total I am on Enfold now and this template is way better!!
Thanks for your help
PeterThis reply has been marked as private.Hi,
Here my Portfolio Item with “Image Media Element”
http://gyazo.com/b4389c9530878c9bbd1a20280dc4dfcdThanks
PeterHi Josue!
Yes it does!
How can i get this also for Portfolio Items?This works fine for the Easy Slider:
/****Caption Title Color****/
.avia-slideshow .avia-caption .avia-caption-title {
color: #777777 !important;
font-size: 15px !important;
text-transform:capitalize
}/****Caption Text Color****/
.caption_framed .slideshow_caption .avia-caption-content p, .caption_framed .slideshow_caption .avia-caption-title, .avia-caption .avia-caption-content p, .avia-caption .avia-caption-title {
background: transparent;
font-size: 13px !important;
color: #b6b6b6 !important;
padding: 0px 0px;
text-transform:capitalize
}/***Caption in Center****/
.caption_framed .slideshow_caption .avia-caption-content p, .caption_framed .slideshow_caption .avia-caption-title, .avia-caption .avia-caption-content p, .avia-caption .avia-caption-title {
width: 100%;
text-align: center;
}
.avia-caption, .avia-inner-caption, .avia-inner-caption {
width: 100%;
left: 0;
}/****Caption below Slider****/
.avia-caption {
position: absolute;
bottom: -64px;
}
.avia-slideshow, .avia-slideshow-inner {
overflow: visible !important;
}
.avia-slideshow {
padding-bottom: 64px;
} -
AuthorPosts