Forum Replies Created
-
AuthorPosts
-
November 28, 2016 at 4:45 pm in reply to: Adding Title/content field to overview Maps Shortcode in backend #717880
Hi Ismael,
Thanks! This helps, the only problem is that the client already added the info that i wanted to show in the “content” field.
So basicly i want to show this field :
array( "name" => __("Marker Tooltip", 'avia_framework' ), "desc" => __("Enter some text here. If the user clicks on the marker the text will be displayed", 'avia_framework' ) , "id" => "content", "type" => "tiny_mce", "std" => "", ),
In the overview.
".$params['args']['content']."
Doesn’t work…any ideas?Thanks again!
- This reply was modified 7 years, 11 months ago by c3computers.
Anyone? :)
I am trying to edit the portfolio.php like they did in the post i posted. But the lines don’t match anymore? New version?
Do you know how i can get the External links to be opened in a _black (new tab)
Thank you!
tnx Andy!
You may close this topic! tnx!
Hi! i dont have i iPad right now but the menu works on my PC whene is shrink the screen.
What i mean bij the grid row are the bloks on my home page (See the image)
The Green black grey and white block.
On the iPad it was like : Green Black Grey White
And it needs to be
Green
Black
Grey
White:) I dont know ive it’s showing right now? Do you have a iPad to test it?
Hi Andy tnx for the advice!
Tnx Topic can be closed
Someone?
Tnx Ismael!
I found a other sollution.
Bump! :)
Tnx!
Topic can be closed!
Hi!
Perfect! TNX!
Why didnt it work like this:?
/* Netwerk Zorgpartners */ li#menu-item-26 a { background-color: #0a3456 !important; color: #ffffff; }
Anyone? :)
the website for our company is now live . See it on http://www.c3computers.nl.
Hi It work perfect like this
At to childtheme function.php
function change_aviajs() { wp_dequeue_script( 'avia-default' ); wp_enqueue_script( 'avia-default-child', get_stylesheet_directory_uri().'/js/avia.js', array('jquery'), 2, true ); } add_action( 'wp_enqueue_scripts', 'change_aviajs', 100 );
Copy
/httpdocs/wp-content/themes/enfold/js/avia.js
To
httpdocs/wp-content/themes/enfold-child/js/avia.js
Create folder ‘js’ if its not existing.
Open ‘avia.js and replace
if(transparent) { if(st > 50) { //header.removeClass('av_header_transparency'); av_change_class(header, 'remove', 'av_header_transparency'); } else { //header.addClass('av_header_transparency'); av_change_class(header, 'add', 'av_header_transparency'); } } }
With:
if(transparent) { if(st > 50) { //header.removeClass('av_header_transparency'); //av_change_class(header, 'remove', 'av_header_transparency'); } else { //header.addClass('av_header_transparency'); av_change_class(header, 'add', 'av_header_transparency'); } }
Good luck!
Topic can be closed
Topic can be closed! :)
Hallo!
I fixed it! Topic can be closed. Was to soon to open a topic. tnx!
Hi ive added the folowing:
[av_font_icon icon='ue8f3' font='entypo-fontello' style='' caption='' link='manually,http://facebook.com/' linktarget='' size='40px' position='center' color=''][/av_font_icon][av_font_icon icon='ue8fa' font='entypo-fontello' style='' caption='' link='manually,http://twitter.com/' linktarget='' size='40px' position='center' color=''][/av_font_icon][av_font_icon icon='ue8fc' font='entypo-fontello' style='' caption='' link='manually,http://linkedin.com' linktarget='' size='40px' position='center' color=''][/av_font_icon][av_font_icon icon='ue8f6' font='entypo-fontello' style='' caption='' link='manually,http://google.nl' linktarget='' size='40px' position='center' color=''][/av_font_icon][av_font_icon icon='ue805' font='entypo-fontello' style='' caption='' link='manually,http://mailto:test.nl' linktarget='' size='40px' position='center' color=''][/av_font_icon]
But the icons show bolow the other icon. not right next to them. And i would like to remove the underline whene they are linked
January 27, 2016 at 1:18 pm in reply to: Add socialbar to portfolio items (with aviabuilder activated) #572828Hi it working
that was a special kind a stupid :p
many tnx!
Topic can be closed
January 27, 2016 at 1:10 pm in reply to: Add socialbar to portfolio items (with aviabuilder activated) #572819Hi!
it’s still showing on the bottom off the pages.
Another solution? :)
Style.css
/*Remove big automated image on portfoliopage*/ .single-portfolio .page-thumb { display: none; } */ Social media verwijderen op PAGES */ .page #custom_share_box { display: none; } */ Achtergrondkleur heading */ .av-special-heading-tag { height: 100px; position: relative; top: 40px; } .av-special-heading-tag span { background: rgba(255, 162, 29, 0.5) none repeat scroll 0 0; border-radius: 15px; padding: 10px 20px; } /* Menu Kleuren */ /* Home */ li#menu-item-11 a { background-color: #545454!important; } /* IT Diensten */ li#menu-item-249 a { background-color: #2d5c88!important; } /* Telefonie */ li#menu-item-261 a { background-color: #dd6666!important; } /* Mobiel */ li#menu-item-263 a { background-color: #61afd3!important; } /* Internet */ li#menu-item-262 a { background-color: #00ddb1!important; } /* Veiligheid */ li#menu-item-353 a { background-color: #816084!important; } /* Website */ li#menu-item-477 a { background-color: #ffa21d!important; } /* Nieuws */ li#menu-item-274 a { background-color: #545454!important; } /* Portfolio */ li#menu-item-511 a { background-color: #545454!important; } /* Contact */ li#menu-item-266 a { background-color: #545454!important; }
functions.php
add_action('ava_after_content', 'avia_add_social_toolbars', 10, 2); function avia_add_social_toolbars($id = "", $context = "") { if($context == "single-portfolio" || $context == "product") avia_social_share_links(); } add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1); function avia_add_social_toolbar_template_builder($content = "") { $content .= '<div id="custom_share_box" class="avia-section main_color container_wrap"><div class="container">'; $content .= avia_social_share_links(array(), '', '', false); $content .= '</div>'; return $content; }
- This reply was modified 8 years, 9 months ago by c3computers.
January 27, 2016 at 11:58 am in reply to: Add socialbar to portfolio items (with aviabuilder activated) #572772January 27, 2016 at 11:54 am in reply to: Add socialbar to portfolio items (with aviabuilder activated) #572770Hi!
I checked it out, its working for the single portfolio page. But is it alsow showing on the normal pages. I dont want that. :)
Topic can be closed.
Topic can be closed.
hi!
the plugin
jQuery Updater
was the bad guy ! :)Topic can be closed
Anyone? :)
weblink
i’ve disabled the cato widget and only a custom menu is visable now.
Thanks! It works!
Here is the the total code if anybody needs it:
/* Fontsize Price - Shopoverview*/ #top .price, #top .price span, #top del, #top ins{ display: inline; text-decoration: none; font-size: 25px; line-height: 30px; font-weight: 600; } /* Fontsize Price - Single Product page */ .single-product-summary .amount { font-size: 40px !important; }
- This reply was modified 9 years ago by c3computers.
Thanks! Works create!
-
AuthorPosts