Forum Replies Created
-
AuthorPosts
-
Hi,
I can’t see this on our end. Can you give us a link to the actual page?
Please upgrade to Enfold 1.8.1.
Regards,
Ismael
Hi,
You should probably use a sandbox paypal first to check if the paypal payment is working.
https://developer.paypal.com/webapps/developer/docs/classic/lifecycle/ug_sandbox/#overview
On Woocommerce > Settings > Payment Gateways > Paypal > Gateway Testing, check the enable Enable PayPal sandbox.
Make sure you configure the proper options like your paypal email etc.
Regards,
Ismael
Hi,
You can change the icon color of the social icons with this
#top .social_bookmarks_rss a{color:#ffa133;}
#top .social_bookmarks_facebook a{color:#37589b;}
#top .social_bookmarks_twitter a{color:#46d4fe;}You can find the background color for each social icons on css > layout.css, find this code
#top .social_bookmarks_rss:hover a{color:#fff; background-color:#ffa133; }
#top .social_bookmarks_facebook:hover a{color:#fff; background-color:#37589b; }
#top .social_bookmarks_twitter:hover a{color:#fff; background-color:#46d4fe; }
#top .social_bookmarks_mail:hover a{color:#fff; background-color:#9fae37; }
#top .social_bookmarks_dribbble:hover a{color:#fff; background-color:#e44885; }
#top .social_bookmarks_linkedin:hover a{color:#fff; background-color:#419cca; }
#top .social_bookmarks_search:hover a{color:#fff; background-color:#222222; }
#top .social_bookmarks_gplus:hover a{color:#fff; background-color:#de5a49; }
#top .social_bookmarks_behance:hover a{color:#fff; background-color:#008cfa; }
#top .social_bookmarks_flickr:hover a{color:#fff; background-color:#ff0086; }
#top .social_bookmarks_forrst:hover a{color:#fff; background-color:#234317; }
#top .social_bookmarks_myspace:hover a{color:#fff; background-color:#000000; }
#top .social_bookmarks_tumblr:hover a{color:#fff; background-color:#345574; }
#top .social_bookmarks_vimeo:hover a{color:#fff; background-color:#31baff; }
#top .social_bookmarks_youtube:hover a{color:#fff; background-color:#a72b1d; }
#top .social_bookmarks_pinterest:hover a{color:#fff; background-color:#cb2027; }
#top .social_bookmarks_skype:hover a{color:#fff; background-color:#12a5f4; }
#top .social_bookmarks_instagram:hover a{color:#fff; background-color:#a67658; }For the footer widget background, you can use this. Assuming you have 3 column footer.
#footer .flex_column.av_one_third {
background: red;
}
#footer .flex_column.av_one_third:nth-child(2) {
background: blue;
}
#footer .flex_column.av_one_third:nth-child(3) {
background: green;
}You can use av_one_fourth for 4 columns and av_one_fifth for 5 columns.
Regards,
Ismael
Hi,
For the Portfolio Overview, you can edit wp-contentthemesenfoldconfig-templatebuilderavia-shortcodes > portfolio.php, find this code
$output .= "<div data-ajax-id='{$the_id}' class=' grid-entry flex_column isotope-item all_sort {$style_class} {$post_class} {$sort_class} {$grid} {$extraClass}'>";
$output .= "<div class='main_color inner-entry'>";
$output .= apply_filters('avf_portfolio_extra', "", $entry);
$output .= "<".$link_markup[0]." data-rel='grid-".avia_post_grid::$grid."' class='grid-image avia-hover-fx'>".$custom_overlay.get_the_post_thumbnail( $the_id, $image_size )."</".$link_markup[1].">";
$output .= !empty($title) || !empty($excerpt) ? "<div class='grid-content'><div class='avia-arrow'></div>" : '';
$output .= !empty($title) ? "<h3 class='grid-entry-title'><a href='{$title_link}' title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>": '';
$output .= !empty($excerpt) ? "<div class='grid-entry-excerpt'>".$excerpt."</div>" : '';
$output .= !empty($title) || !empty($excerpt) ? "</div>" : '';
$output .= "</div>";
$output .= "</div>";Replace it with
$portfolio_date = get_the_date($entry->post_date);
$output .= "<div data-ajax-id='{$the_id}' class=' grid-entry flex_column isotope-item all_sort {$style_class} {$post_class} {$sort_class} {$grid} {$extraClass}'>";
$output .= "<div class='main_color inner-entry'>";
$output .= apply_filters('avf_portfolio_extra', "", $entry);
$output .= "<".$link_markup[0]." data-rel='grid-".avia_post_grid::$grid."' class='grid-image avia-hover-fx'>".$custom_overlay.get_the_post_thumbnail( $the_id, $image_size )."</".$link_markup[1].">";
$output .= !empty($title) || !empty($excerpt) ? "<div class='grid-content'><div class='avia-arrow'></div>" : '';
$output .= !empty($title) ? "<h3 class='grid-entry-title'><a href='{$title_link}' title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>": '';
$output .= "<br>";
$output .= "<span class='post-meta-infos'>";
$output .= "<span class='date-container minor-meta'>".$portfolio_date."</span>";
$output .= "</span>";
$output .= !empty($excerpt) ? "<div class='grid-entry-excerpt'>".$excerpt."</div>" : '';
$output .= !empty($title) || !empty($excerpt) ? "</div>" : '';
$output .= "</div>";
$output .= "</div>";You can edit the date settings on Settings > General panel.
For single portfolio without the Advance Layout Editor, you can edit includes > loop-portfolio-single.php, find the code:
//display the actual post content
the_content(__('Read more','avia_framework').'<span class="more-link-arrow"> →</span>');Below, you can echo the date code:
echo "<span class='post-meta-infos'>";
echo "<span class='date-container minor-meta'>".get_the_time('d M Y')."</span>";
echo "</span>";Regards,
Ismael
Hi,
First, the nested subpages will not appear when you assign a sidebar on a page. Second, the custom sidebar will go first before the Displayed Everywhere sidebar.
Regards,
Ismael
July 19, 2013 at 3:54 am in reply to: Please add it in the release. The settings are lost every time you update the th #130441July 19, 2013 at 3:39 am in reply to: Ajax search not activating – where to start troubleshooting? #129681Hi,
I can see the problem on Safari. I tried to fix it but failed, I have no idea why it is not working properly on Safari. Let me tag Kriesi and the rest of the support team. This is what happens on Safari.
Fullwidth Slider Background Options
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center center;
Regards,
Ismael
July 19, 2013 at 2:52 am in reply to: How do I make the portfolio post title, opening in ajax, not be links? #130280Hi,
Please add this on your custom.css or Quick CSS
.portfolio-preview-title a {
pointer-events: none;
}Regards,
Ismael
July 19, 2013 at 2:50 am in reply to: Creating custom icons – Enfold (to recreate icon box feel) #130279Hi,
Can you give us a screenshot of what you are trying to do? I’m sure it is possible. You can always use the text block element to input a html codes and the custom.css to modify styles.
Regards,
Ismael
Hi,
On Enfold > Header > Responsive Header Main Menu > please try to select “Display as Dropdown Menu”.
Please upgrade to Enfold 1.8.1.
Regards,
Ismael
Hi,
Open functions.php, add this line;
add_theme_support('avia_template_builder_custom_css');
You will be able to add unique css selectors for each elements.
Regards,
Ismael
Hi,
You can add this on your custom.css or Quick CSS
#wp-calendar td, #wp-calendar th {
text-align: center;
font-size: 11px;
padding: 3px;
background: white;
}Regards,
Ismael
Hi,
It is actually the column margin.
body .column-top-margin {
margin-top: 30px;
}Regards,
Ismael
Hi,
Please install WordPress 3.5 or higher. You should probably start from scratch.
Regards,
Ismael
Hi,
I think it is a cached version of the site. Please remove browser cache or flush the cache settings of the current caching plugin. This is what I see on my end.
Regards,
Ismael
Hi,
Please watch this video on how to properly upload the update via FTP. :)
Please create a backup of theme files and database.
Regards,
Ismael
Hi,
Please add this on your custom.css or Quick CSS
@media only screen and (max-width: 767px) {
.responsive #header .sub_menu {
padding-top: 10px;
background: white;
}
.social_header .phone-info {
height: 20px;
}
}Regards,
Ismael
Hi,
I can’t seem to find the actual “Post & Pages” text on the search results. Can you give us a screenshot?
Regards,
Ismael
Hi,
Yes, it is possible.
[av_table purpose='pricing' caption='']
[av_row row_style=''][av_cell col_style='']<img src="IMAGE URL HERE">[/av_cell][av_cell col_style='']<img src="IMAGE URL HERE">[/av_cell][av_cell col_style='']<img src="IMAGE URL HERE">[/av_cell][/av_row]
[av_row row_style=''][av_cell col_style='']<img src="IMAGE URL HERE">[/av_cell][av_cell col_style='']<img src="IMAGE URL HERE">[/av_cell][av_cell col_style='']<img src="IMAGE URL HERE">[/av_cell][/av_row]
[av_row row_style=''][av_cell col_style='']<img src="IMAGE URL HERE">[/av_cell][av_cell col_style='']<img src="IMAGE URL HERE">[/av_cell][av_cell col_style='']<img src="IMAGE URL HERE">[/av_cell][/av_row]
[/av_table]Regards,
Ismael
Hi,
You can add something like this on your custom.css or Quick CSS
@media only screen and (max-width: 767px) {
.responsive .boxed#top {
width: 100%;
}
}Regards,
Ismael
Hi,
You can specify a uniform height for each list. Add this on your custom.css or Quick CSS
.main_color .pricing-table>li:nth-child(odd) {
height: 60px;
}
.main_color .pricing-table>li:nth-child(even) {
height: 60px;
}Regards,
Ismael
Hi,
The space below the slider is cause by a horizontal rule element. You can decrease the padding or remove it.
Regards,
Ismael
July 18, 2013 at 5:44 am in reply to: link & quote post icons do not show in "single author" blog page #129523Hi,
Sorry for that.
Edit includes > loop-index.php, find this code
if(strpos($blog_style, 'multi') !== false)
{
$gravatar = "";
$link = get_post_format_link($post_format);
if($post_format == 'standard')
{
$gravatar = get_avatar( get_the_author_meta('email'), '75', "blank" );
$link = get_author_posts_url($post->post_author);
}
echo "<a href='{$link}' class='post-author-format-type'><span class='rounded-container'>".$gravatar.$icon."</span></a>";
}
else if(strpos($blog_style, 'small') !== false)
{
echo "<a href='{$link}' class='small-preview'>".$slider.$icon."</a>";
}Below, add this code
if(strpos($blog_style, 'multi') !== true)
{
$gravatar = "";
$link = get_post_format_link($post_format);
if($post_format == 'standard')
{
$gravatar = get_avatar( get_the_author_meta('email'), '75', "blank" );
$link = get_author_posts_url($post->post_author);
}
echo "<a href='{$link}' class='post-author-format-type'><span class='rounded-container'>".$gravatar.$icon."</span></a>";
}
else if(strpos($blog_style, 'small') !== true)
{
echo "<a href='{$link}' class='small-preview'>".$slider.$icon."</a>";
}Regards,
Ismael
Hi,
Make this page http://69.195.124.95/~threeced/curriculum-programs-early-childhood/ the parent page of
Early Childhood
Parent & Tot
Preschool
Kindergarten
Curriculum Overview Chart
Edit each page, look for Page Attributes > select this http://69.195.124.95/~threeced/curriculum-programs-early-childhood/ as their parent.
See if it works.
Regards,
Ismael
Hi,
You can the shortcodes. Edit a post, go to Visual Editor > Insert Shortcode wand. You can an EasySlider.
[av_slideshow size='featured' animation='slide' autoplay='false' interval='5']
Regards,
Ismael
Hi,
You can set a min-height for the box-content allowing the buttons to align properly.
/*
Mobile Styles
================================================== */
/* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */
@media only screen and (min-width: 820px) and (max-width: 989px) {
/* Add your Mobile Styles here */
.home .av_one_third .iconbox_content {
min-height: 220px;
}
}Regards,
Ismael
Hi,
This is the whole code for the copyright.
//copyright
$copyright = avia_get_option('copyright', "© ".__('Copyright','avia_framework')." - <a href='".home_url('/')."'>".get_bloginfo('name')."</a>");
// you can filter and remove the backlink with an add_filter function
// from your themes (or child themes) functions.php file if you dont want to edit this file
// you can also just keep that link. I really do appreciate it ;)
$kriesi_at_backlink = apply_filters("kriesi_backlink", " - <a href='http://kriesi.at'>Enfold Theme by Kriesi</a>");You can change the values there then this code echo it out:
<span class='copyright'><?php echo $copyright . $kriesi_at_backlink; ?></span>
Regards,
Ismael
-
AuthorPosts