Forum Replies Created
-
AuthorPosts
-
August 31, 2013 at 10:57 am in reply to: How to copy contents from the demo pages to a new page #138533
Hi,
You can save any page layout as template and then load it when creating a new page.
Regards,
Yigit
Hi,
In theme directory please go to Enfold > Framework > Php and open Class-breadcrumb.php file. Find following code in lines between 281-292
if('post' == $post_type)
{
$category = get_the_category();
$ID = $category[0]->cat_ID;
$parents = get_category_parents($ID, TRUE, '$$$', FALSE );
$parents = explode("$$$", $parents);
foreach ($parents as $parent_item)
{
if($parent_item) $trail[] = $parent_item;
}
}
And comment it out
/* if('post' == $post_type)
{
$category = get_the_category();
$ID = $category[0]->cat_ID;
$parents = get_category_parents($ID, TRUE, '$$$', FALSE );
$parents = explode("$$$", $parents);
foreach ($parents as $parent_item)
{
if($parent_item) $trail[] = $parent_item;
}
} */
Regards,
Yigit
August 31, 2013 at 9:42 am in reply to: shortcode of latest posts in page (magic wand) gone?? #138399Hi,
In Default editor and in Avia Layout Builder there is a Post Slider shortcode that you can use to display the latest posts. You can find it in “Content Elements” tab.
Regards,
Yigit
Hi,
It’s because of Shareaholic. Starting from the blog title all the way down to icons there is Shareaholic’s container. You can use following CSS code for a quick solution.
.shareaholic-canvas { height: 50px; }
.shareaholic-share-buttons-container .shareaholic-ui .badge-counter { z-index: -1; }Please add this code to Quick CSS
Regards,
Yigit
Edit: Then icons stick to footer. You can add
.shareaholic-canvas { margin-top: 2625px; }
for a temporary solution but it will be problematic again once you post a new blog post. I would recommend you to delete Shareaholic.
August 30, 2013 at 11:35 pm in reply to: How can I change the subject line of the auto generated email from the Enfold .. #138479August 30, 2013 at 11:25 pm in reply to: How can I change the subject line of the auto generated email from the Enfold .. #138477Hi,
This path leads you to Contact.php file in the directory where WordPress is installed. You can change it via FTP
Regards,
Yigit
Hi Joe,
Please update Enfold to 2.0.2 and also make sure that you’ve updated WordPress to 3.6. If issue remains, let us know
Regards,
Yigit
August 30, 2013 at 10:39 pm in reply to: In single.php how to remove the Sidebar and changing it to Fullwidth? #138502Hi,
I’m actually not sure if there is better way to do it but this is how i would do;
First in Single.php file change the code in line 28 from
<div class='content units <?php avia_layout_class( 'content' ); ?>'>
to
<div class='content units twelve'>
Then delete these lines between 51-57
<?php
$avia_config = "blog";
//get the sidebar
get_sidebar();
?>
Then add this code to Quick CSS
.content { border-right-style: none; }
I hope that works for you
Regards,
Yigit
Hi,
You should go to Menus and check Use as Mega Menu on the page you would like to display as Mega Menu
http://oi44.tinypic.com/28as6d4.jpg
Regards,
Yigit
Hi,
Please try adding this code to Quick CSS
.grid-entry { padding: 0 0 10px 10px; }
Regards,
Yigit
Hi,
If i understood you correctly, you would like to insert Video shortcode inside of Tabs shortcode, if so, You can insert Tabs shortcode and then insert Video shortcode seperately, cut this Video shortcode and paste inside Tabs shortcode where it says “Tab Content goes here”.
Regards,
Yigit
August 30, 2013 at 6:40 pm in reply to: LayerSlider: how to let text fly out after sliding in like in the demo? #138299Hi,
Footer widget has top and bottom margin of 30px. Followig code will reduce top and bottom margin to 10px
#footer .widget { margin: 10px 0 10px 0; }
Please add it to Quick CSS
Regards,
Yigit
Hey,
Please add this code
.title_container {
border-bottom-style: solid;
border-bottom-width: 1px;
to Quick CSS
Regards,
Yigit
Hi,
I guess you removed scroll to top button, if not please add
#scroll-top-link { display: none; }
this code to Quick CSS
Default padding in footer is
padding: 15px 0 30px 0;
You can reduce it by adding following code to Quick CSS
#footer {padding: 15px 0 15px 0; }
Regards,
Yigit
Hi,
Please in your theme directory open Footer.php file and change the code in line 101 from
<span class='copyright'><?php echo $copyright . $kriesi_at_backlink; ?></span>
to:
<span class='copyright'><?php echo $copyright; echo date(' Y') . $kriesi_at_backlink; ?></span>
Regards,
Yigit
-
AuthorPosts