Forum Replies Created
-
AuthorPosts
-
Hi,
thx for your answer. Indeed, the is a google_maps.php file in the child theme. This file as been correctly updated buyt the problem remains the same unfortunatly.
I have totaly delete this file from the child theme.
Another idea to solve this issue ? The google key is correct and this work before the update.
your help is really appreciated
Best regards
Hi,
excuse me but i don’t understand the point of your last reply ?
Indeed the problem is still here and we don’t know why. We try to generate a new key with no success.
But in the backend of the enfold, we have this message when we try to “ckeck the key” of the Google services tab :
“We were able to properly connect to google maps with your API key
If you ever change your API key or the URL restrictions of the key please verify the key here again, to test if it works properly”Also before the update of enfold, the google map works great.
Thx for your help on this
Best regards
Hey,
i have already try that. Also a new key with no restriction.
This doesn’t solve the issue.Regards
Hi Jamie,
i just add a comment on the 10 item. You can already doing that. You need to activate the “debug state” of Enfold.You can add in your function.php :
add_action('avia_builder_mode', "builder_set_debug"); function builder_set_debug() { return "debug"; }
When this is done, you can copy the code from your content administration and paste in another page of the same or another website.
Have a nice day !
RegardsHi,
thx, check in private content for the concerned website
Best regards,
Hi,
correct, the value in Settings / Reading was set to 10.
This solves my problem.
Thx for your help
Regards
Hi,
thx i add it to the functions.php of my child theme and it’s work. I can display post in good order.
But, if i change the [‘posts_per_page’] parameter to any number superior to 10 the page display only 10 result.
Strange isn’t it ?
Below my code (The echo archive display 1)
function avia_post_slide_query_mod( $query, $params ) { // echo "archive".is_archive(); if(is_archive()){ $query['orderby'] = 'title'; $query['order'] = 'ASC'; $query['posts_per_page'] = 12; } return $query; } add_filter( 'avia_post_slide_query', 'avia_post_slide_query_mod', 10, 2);
Thx for your help to solve this
Hey,
this link is in my post :)
I don’t see how can I modify the order and the number of displaying post.
Thx
Hi,
ok thx for your reply.
Too bad .. ! :)
Best regards,
Hi,
It’s for the image / picture element. On an image, we can set a link. By default, the combobox is set to “No link”. We want to set that combobox by default on “Ligtbox”.
Ask to a teammate ? :)
Best regards,
Hi,
Perhaps my English doesn’t help :)
Here on the private content a screenshoot of what we talk about.
How can we set the image link set to Lightbox by default instead of “no link” ?
Regards
Hey,
it’s not on 1 page. We try to do this for all the pages.
Trere is a way to set the image link to Lightbox by default instead of “no link” ?
It’s possible to add a php function to do this ? A hook ?
Regards
Hi,
thx for your return. It’s work !
I copy the page.php and rename it page-29.php. Erase the content in the file and the BackEND administration. Switch to default editor and it’s ok.
Cheers !
Hi,
I try to use a template in my child theme. I add page.php to it and in page.php add this code
get_template_part( "includes/moncompte", "page-29" ); get_template_part( 'includes/loop', 'page' );
In my child theme I add a folder includes/moncompte and in it a page-29.php (-copy of page.php)
I think i’m doing it wrong and doesn’t masterize what i’m doing.
I try to create a customize page.php for the page with the ID 29.
PS : I try to change my theme to Twenty Fifteen and it’s work fine. My file page-29.php at the root is display correctly.
Thx for your help on this.
Regards
- This reply was modified 9 years, 1 month ago by leplusweb.
Hi, yeah that’s work fine ! The hook wasn’t the good one …
Thx a lot !
Regards
Hey,
you already have my administror code above.
(The second one)
Cheers
- This reply was modified 9 years, 2 months ago by leplusweb.
Hi ! Not sure what you expect of me.
So i delete the comment which cause an error.
I have a save of this file and this is an offline website. You can edit the function.php the way you want.
- This reply was modified 9 years, 2 months ago by leplusweb.
Hi,
You already are administrator.
Seems the plugin AAM block you.
Hey,
thx
Edit : I reupload the function.php with the code below
add_action( 'admin_menu', 'enfold_customization_admin' ); function enfold_customization_admin() { echo '<style type = "text/css">'; echo 'a[href="#avia_sc_button_full"] { display: none; }'; echo '</style>'; }
- This reply was modified 9 years, 2 months ago by leplusweb.
Simply that ?
Ok I think there is an unique ID for each button. That’s why in my first code i add :
echo '#mceu_63 { display: none; }'; echo '#mceu_64 { display: none; }';
Thx for your help.
Regards,
LoïcHi,
When I Inspect the source of a button (for example the Headline Rotator). I don’t find the ID.
I have this code
<a data-avia-tooltip="Creates a text rotator for dynamic headings" data-dragdrop-level="3" href="#avia_sc_headline_rotator" class="shortcode_insert_button avia-target-insert ui-draggable ui-draggable-handle"><img src="http://www.website.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/images/sc-heading.png" alt="Headline Rotator"><span>Headline Rotator</span></a>
Where can I find the ID for this ?
Thx for your help.
Regards,
Loïc- This reply was modified 9 years, 3 months ago by leplusweb.
July 27, 2015 at 5:13 pm in reply to: Remove Single Shortcodes Elements – in both 'Post' and 'Page' #479179Hello,
after several research, i found this post.
I try to basically doing the same thing : hide boutton in the admin bar when you write a page.
This code works perfectly for hidding the “button” widget.
add_action( 'admin_print_styles', 'enfold_customization_admin' ); function enfold_customization_admin() { echo '<style type = "text/css">'; echo '#mceu_63 { display: none; }'; echo 'a[href="#avia_sc_button"] { display: none; }'; echo '</style>'; }
But I can’t find out where is the list of unique ID. There is one ?
When i add this, nothing else hidding.
add_action( 'admin_print_styles', 'enfold_customization_admin' ); function enfold_customization_admin() { echo '<style type = "text/css">'; echo '#mceu_63 { display: none; }'; echo '#mceu_64 { display: none; }'; echo 'a[href="#avia_sc_button"] { display: none; }'; echo 'a[href="#shortcode_insert_button"] { display: none; }'; echo '</style>'; }
So i want to know where i can find the unique ID list and hidde other button in the admin bar.
Regards,
Loïc- This reply was modified 9 years, 2 months ago by Elliott.
Hey,
thx for your help. You’re right, i copy / paste the class ‘avia_newsbox’ (without rename it) in the functions.php of my child_theme.
After that I can personnalize the Front code of the widget.
Regards,
Hey,
all change i’m doing at the code below function widget($args, $instance)
For example I add a class test_class at the ul news-wrap. It’s not appear :
echo '<ul class="news-wrap test_class image_size_'.$image_size.'">';
I think my new widget is properly declare, but i can’t customize it. The methodology is not correct ? I can use the functions.php to customize a widget ?
Thx !
Best regards,Hi,
it’s works fine. Thanx for your help.
It’s for boxed elements, so the fullwidth won’t be a problem
Cheers!
April 28, 2015 at 10:58 am in reply to: The Events Calendar hompeage Shortcode – customize thumbnail size #435914Hi,
ok, it’s work like this. Thanks for your help, i learn a lot with your documentation.
RTFM :)
Regards
Hey,
Ok thx for your answer.
Cheers
Hi,
thanx a lot. With your response i find the problem.
Regards,
Loïc
Hi,
I try this and this is not the solution. On the other side, the updating of the theme file solve the issue.
Thx for your help on this.
Regars,
Hi,
the updating of the theme file solve the issue. I have to check in Appearance > Themes > Theme Details to update it. I think the theme alert for update in Enfold > Theme Update.
Anymay the problem is solve, thx for your help
Regars,
-
AuthorPosts