-
Search Results
-
Hi,
I have more problems with enfold :
If I add icon : i’ve only circle grey
If I add horizontal separation : I’ve only white space but no bar
…etc.If I would like to see edit my page with default editing text : all my pages is empty
If I used avia editor : I see the content…I don’t understand, all it’s ok sunday morning and now all it’s break… I’ve try to reupload theme with new download of it and I’ve the same results… Im’ desperate
If I activate another theme and reactivate enfold, the problem of display was corrected for the content which is published…. For example, the white icons appears in grey circle but if I had new content or modify the published content the same problem appears a new time…
my wp-config define php memeory limit like : define( ‘WP_MEMORY_LIMIT’, ’96M’ );
Can you help me…
Can I give you my access ? If yes, where can I publish them ?
ThanksNOTE :
my wp-config define php memeory limit like : define( ‘WP_MEMORY_LIMIT’, ’96M’ );Hi,
I have a big problem which I don’t understand… I’ve upload enfold and all it’s was ok
but now when I add new element it’s doesn’t work.If I add icon : i’ve only circle grey
If I add horizontal separation : I’ve only white space but no bar
…etc.If I would like to see edit my page with default editing text : all my pages is empty
If I used avia editor : I see the content…I don’t understand, all it’s ok sunday morning and now all it’s break… I’ve try to reupload theme with new download of it and I’ve the same results… Im’ desperate
If I activate another theme and reactivate enfold, the problem of display was corrected for the content which is published…. For example, the white icons appears in grey circle but if I had new content or modify the published content the same problem appears a new time…
my wp-config define php memeory limit like : define( ‘WP_MEMORY_LIMIT’, ’96M’ );
Can you help me…
Can I give you my access ? If yes, where can I publish them ?
ThanksTopic: Enfold heading with WPML
Hi,
Well I have a big problem which I don’t understand… I’ve upload enfold and all it’s was ok
but now when I add new element it’s doesn’t work.If I add icon : i’ve only circle grey
If I add horizontal separation : I’ve only white space but no bar
…etc.If I would like to see edit my page with default editing text : all my pages is empty
If I used avia editor : I see the content…I don’t understand, all it’s ok at 7:00 pm and now all it’s break… I’ve try to reupload theme with new download of it and I’ve the same results… Im’ desperate
If I activate another theme and reactivate enfold, the problem of display was corrected for the content which is published…. For example, the white icons appears in grey circle but if I had new content or modify the published content the same problem appears a new time…
Can you help me…
ThanksHello,
Can you tell me how i can add my own made icons to the iconbox/ iconlist.
I saw your video where you add icons from http://fontello.com/
But that are not my own iconsPlease help
regards
IwanTopic: Several questions
Hello,
thanks for the brilliant theme, i need some final touches (www.occasiemobilhomes.be)
1. http://occasiemobilhomes.be/motorhome_te_koop/
I would like a bigger preview image, is that possible?2. http://occasiemobilhomes.be/motorhome_te_koop/
can i hide the post date, category and authour?3. can i add my own icons?
Topic: new social icons
Hi,
Sorry for duplicated threads.
I created a topic on this couple of days ago but it was closed before I got a chance to update it.
My question is very specific on how to add icons of three of the most popular social networking sites in China, QQ, tencent weibo and Weibo to the top navigation bar.
I understand they are not included in v2.2 and am not sure if future release is going to include them since they are not that popular outside of China.
So, could you please help? how can I add these three social icons?
QQ & weibo: http://all-free-download.com/free-vector/vector-misc/vector_summary_of_commonly_used_chinese_social_networking_sites_180168.html
tencent weibo: http://wiki.open.t.qq.com/index.php/%E8%A7%86%E8%A7%89%E7%B4%A0%E6%9D%90%E4%B8%8B%E8%BD%BDThanks,
Hey guys, I know this has been asked before but I am still having trouble after looking over different solutions. I want to make the iconbox icons themselves link not just the heading in the box (the default behavior)
I saw one solutions that made the whole box a link, which I don’t want.
then I saw this from dude
https://kriesi.at/support/topic/icon-box-icon-link/and that is what I tried. But it isn’t working. and I can’t figure out how to impliment it. I am using a child theme and this is a bit new for me in changing this type of code. I have only modified some of the functions behaviors and css thus far.
I changed the code per dudes instructions and them I placed the entire iconbox.php file in my child folder and that didn’t work. then because I didn’t know how to deploy the change I tried to add just the new code to functions.php
Can you please tell me what if anything is wrong with my code in the iconbox.php file and then how/where to place it in my child themes folder.
Thanksps. line 172 is where the change started, but I guess you can’t see that obviously. but gives general location.
website is http://jackandaddi.com/ and there are some icon boxes on the home screen.
<?php
/**
* Textblock
* Shortcode which creates a text element wrapped in a div
*/if ( !class_exists( 'avia_sc_icon_box' ) )
{
class avia_sc_icon_box extends aviaShortcodeTemplate
{
/**
* Create the config array for the shortcode button
*/
function shortcode_insert_button()
{
$this->config['name'] = __('Icon Box', 'avia_framework' );
$this->config['tab'] = __('Content Elements', 'avia_framework' );
$this->config['icon'] = AviaBuilder::$path['imagesURL']."sc-icon_box.png";
$this->config['order'] = 90;
$this->config['target'] = 'avia-target-insert';
$this->config['shortcode'] = 'av_icon_box';
$this->config['tooltip'] = __('Creates a content block with icon to the left or above', 'avia_framework' );
}/**
* Popup Elements
*
* If this function is defined in a child class the element automatically gets an edit button, that, when pressed
* opens a modal window that allows to edit the element properties
*
* @return void
*/
function popup_elements()
{
$this->elements = array(array(
"name" => __("IconBox Icon",'avia_framework' ),
"desc" => __("Select an IconBox Icon bellow",'avia_framework' ),
"id" => "icon",
"type" => "iconfont",
"font" => "entypo-fontello",
"folder"=> AviaBuilder::$path['assetsURL']."fonts/",
"chars" => AviaBuilder::$path['pluginPath'].'assets/fonts/entypo-fontello-charmap.php',
"std" => "1"),array(
"name" => __("Icon Position", 'avia_framework' ),
"desc" => __("Should the icon be positioned at the left or at the top?", 'avia_framework' ),
"id" => "position",
"type" => "select",
"std" => "left",
"subtype" => array( __('Left', 'avia_framework' )=>'left',
__('Top', 'avia_framework' )=>'top')),array(
"name" => __("Title",'avia_framework' ),
"desc" => __("Add an IconBox title here",'avia_framework' ),
"id" => "title",
"type" => "input",
"std" => __("IconBox Title",'avia_framework' )),array(
"name" => __("Title Link?", 'avia_framework' ),
"desc" => __("Do you want to apply a link to the title?", 'avia_framework' ),
"id" => "link",
"type" => "linkpicker",
"fetchTMPL" => true,
"std" => "",
"subtype" => array(
__('No Link', 'avia_framework' ) =>'',
__('Set Manually', 'avia_framework' ) =>'manually',
__('Single Entry', 'avia_framework' ) =>'single',
__('Taxonomy Overview Page', 'avia_framework' )=>'taxonomy',
),
"std" => ""),array(
"name" => __("Open in new window", 'avia_framework' ),
"desc" => __("Do you want to open the link in a new window", 'avia_framework' ),
"id" => "linktarget",
"required" => array('link', 'not', ''),
"type" => "select",
"std" => "no",
"subtype" => array(
__('Yes', 'avia_framework' ) =>'yes',
__('No', 'avia_framework' ) =>'no')),array(
"name" => __("Content",'avia_framework' ),
"desc" => __("Add some content for this IconBox",'avia_framework' ),
"id" => "content",
"type" => "tiny_mce",
"std" => __("Click here to add your own text", "avia_framework" )),
);}
/**
* Editor Element - this function defines the visual appearance of an element on the AviaBuilder Canvas
* Most common usage is to define some markup in the $params['innerHtml'] which is then inserted into the drag and drop container
* Less often used: $params['data'] to add data attributes, $params['class'] to modify the className
*
*
* @param array $params this array holds the default values for $content and $args.
* @return $params the return array usually holds an innerHtml key that holds item specific markup.
*/
function editor_element($params)
{
$icon_el = $this->elements[0];$chars = $icon_el['chars'];
if(!is_array($chars))
{
include($icon_el['chars']);
}$display_char = isset($chars[($params['args']['icon'] - 1)]) ? $chars[($params['args']['icon'] - 1)] : $chars[0];
$inner = "<div class='avia_iconbox avia_textblock avia_textblock_style'>";
$inner .= " <div ".$this->class_by_arguments('position' ,$params['args']).">";
$inner .= " <span data-update_with='icon_fakeArg' class='avia_iconbox_icon avia-font-".$icon_el['font']."'>".$display_char."</span>";
$inner .= " <div class='avia_iconbox_content_wrap'>";
$inner .= " <h4 class='avia_iconbox_title' data-update_with='title'>".html_entity_decode($params['args']['title'])."</h4>";
$inner .= " <div class='avia_iconbox_content' data-update_with='content'>".stripslashes(wpautop(trim(html_entity_decode($params['content']))))."</div>";
$inner .= " </div>";
$inner .= " </div>";
$inner .= "</div>";$params['innerHtml'] = $inner;
$params['class'] = "";return $params;
}/**
* Frontend Shortcode Handler
*
* @param array $atts array of attributes
* @param string $content text within enclosing form of shortcode element
* @param string $shortcodename the shortcode found, when == callback name
* @return string $output returns the modified html string
*/
function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = "")
{
extract(shortcode_atts(array('title' => 'Title', 'icon' => '1', 'position' => 'left', 'link' =>'', 'linktarget' => 'no'), $atts));$icon_el = $this->elements[0];
$chars = $icon_el['chars'];
$font = $icon_el['font'];
if(!is_array($chars))
{
include($icon_el['chars']);
}$display_char = isset($chars[($icon - 1)]) ? $chars[($icon - 1)] : $chars[0];
if($position == 'top') $position .= " main_color";$linktarget = ($linktarget == 'no') ? '' : 'target="_blank"';
$link = aviaHelper::get_url($link);
if(!empty($link))
{
$title = "$title";
}// add blockquotes to the content
$output = '<div class="iconbox iconbox_'.$position.' '.$meta['el_class'].'">';
$output .= '<div class="iconbox_content">';/* commented out the below line wich is default, icon box heading only is the link, and replaced the new code that makes the icon itself a link as well below the lomented out line
$output .= '<div class="iconbox_icon heading-color avia-font-'.$font.'">'.$display_char.'</div>';*/
if(!empty($link))
{
$output .= "";
$output .= '<div class="iconbox_icon heading-color avia-font-'.$font.'">'.$display_char.'</div>';
$output .= '';
}
else
{
$output .= '<div class="iconbox_icon heading-color avia-font-'.$font.'">'.$display_char.'</div>';
}
$output .= '<h3 class="iconbox_content_title">'.$title."</h3>";
$output .= ShortcodeHelper::avia_apply_autop(ShortcodeHelper::avia_remove_autop( $content ) );
$output .= '</div></div>';return $output;
}}
}
Topic: Add to Header
Hi:
Link to my site: http://acrossrealestate.com/
This is only going to be a 1-page site, so I didn’t need and removed the Search box and Menu from the Header Right area.
How can I, instead, add the Business Phone number and maybe social icons to the right of logo?
Also, how can I add my own icon instead of using one of your Social Icon Links (top left)
Thank you,
eleinaHey Guys I know this stuff has been asked before but I am not able to find a straight forward answer that say. I am a bit of a novice fyi. my site is http://www.jackandaddi.com for reference.
PART 1
I have assigned a fixed header with social icons. the container height is being set at 116 px and then when you scroll down it shrinks to 58 px I think. I want to change the height to be something more like 80 px at the largest. It is too tall and the logo wont center in that space. I am running a child theme setup. in layout.css I found
.social_header #header_main .container, .social_header .main_menu ul:first-child > li a { height:116px; line-height: 116px; }
and changed it is say 80 px height and line-height. and then copy pasted that code into my styles.css in my child theme. But nothing changed? Is this the wrong code to change?
PART 2
On my single blog post pages I want there to be no sidebar. so I can place large picture sliders on the main content area. I have the blog style set to Single author big preview image. And no sidebar selected on the single blog post pages.
The blog meta info, post title, body text content, and anything I place in the post all gets squished into a 600px wide container. I want this to be larger. I want it to match the feature image with of 1030px. so like above in layout.css I found this code:
#top .fullsize .template-blog .post-title{text-align: center; font-size: 30px; padding:15px 0; max-width: 800px; margin: 0 auto;}
#top .fullsize .template-blog .post .entry-content{text-align: justify; font-size:15px; line-height: 25px; max-width: 800px; margin:0 auto; overflow: visible; }
#top .fullsize .template-blog .post .entry-content > *{ max-width: 800px; margin-left:auto; margin-right:auto; }
.fullsize .big-preview .avia-gallery {
width: 600px;
max-width: 100%;
margin: 0 auto;
}
I changed all the max-widths to 1030px and then copy pasted this into my child theme style.css file and nothing changes. Is this the rigth code to manipulate. I don’t want to do it with the post id EVERY time I want all posts to be that wide.
Please help, Thanks.
Thanks for the great theme. I have created a child theme and have a fair bit of tweaks for my employer.
1) We needed to have the social icons and header displayed and static on the screen, and also need to disable the shrinking effect of the header when scrolling.
As “Fixed menu” header is the only option providing all the basics of what we needed, I had to do the following customization:
/* fix the height of the header block and lock it down */
#header_main .container {
height: 82px !important;
line-height: 82px !important;
}
/* remove the padding from the main content to the bottom of the header */
.fixed_header.social_header #main {
padding-top: 82px;
}Now that the header block and header-meta block is where we want it and sized correctly, the menu items are still scrolling. How do I fix its position?
2) We noticed that the text colour for the contact info and social icons is too light on the light coloured background, but haven’t been able to find the relevant code in the CSS to make the edit.
3) The request was to put the icons to the right, above the menu, and placed the contact number just to the left of the icons using the following code:
/* put the icons on the right */
#top .social_bookmarks li {
float: right;
}
/* move the contact # left of the icons */
.sub_menu {
right: 70px;
}Is there a better way to do this?
Due to confidentiality clauses with my employer, I cannot disclose the URL out in public during testing, however, I can provide this privately if necessary for you to look at my code.
Topic: Questions about Post Slider
I just added a post slider to one of my pages and I have a few questions I hope you can help with…
1) Is there a way to increase the Title font size? It’s pretty small.
2) Is there a way to disable the pencil/arrow icons and the hover effect?
3) Is there a way to disable the prev/next arrows to the right and left of the slides when the post slider is set to rotate through posts?
4) This one is probably the most important… When the post slider is scrolling through posts, the content below shifts up and down depending on whether the post title is 1, 2 or 3 lines long… Any way to prevent this from happening? Having all the content below the post slider moving up and down is pretty distracting.
I welcome any CSS you can provide that I can add to the Quick CSS section too.
Thanks!
Topic: move sub menu tall logo
