Forum Replies Created
-
AuthorPosts
-
October 26, 2014 at 3:23 pm in reply to: Header Logo – Custom URL using child theme functions.php #341134
Hi Josue or somebody else. Could you please replay on my last question:
Instead of updating the file class-breadcrumb.php, can’t I just add a small piece of code to my functions.php file in my enfold child theme? I prefer to use the child theme instead of changing theme files.And just out of curiosity, if I set the home page to page “Home”, why is the breadcrumb not picking up that page? Is this a bug or is there a logical explanation for it?
Thanks,Stephen
October 20, 2014 at 8:49 pm in reply to: Header Logo – Custom URL using child theme functions.php #338629Thank you Josue.
Instead of updating the file class-breadcrumb.php, can’t I just add a small piece of code to my functions.php file in my enfold child theme? I prefer to use the child theme instead of changing theme files.And just out of curiosity, if I set the home page to page “Home”, why is the breadcrumb not picking up that page? Is this a bug or is there a logical explanation for it?
Thanks,Stephen
October 20, 2014 at 6:04 pm in reply to: Header Logo – Custom URL using child theme functions.php #338511Hi,
I just discovered that in the bread crumbs section beneath the header, the home page is still pointing to http://www.abundantforever.com instead of http://www.abundantforever.com/home.
For example this post: http://www.abundantforever.com/posts/master-your-life-by-mastering-your-thoughts/ shows the bread crumbs “You are here:Home / Blog / Awareness / Master your life by mastering your thoughts (video)”, but the home link should go to the page “Home”.
What do I need to do to fix that?
Thanks,Stephen
October 19, 2014 at 9:29 pm in reply to: multiple category masonry does not show all posts when other category selected #338025Thanks for the tip, I just posted it there.
October 18, 2014 at 10:56 pm in reply to: multiple category masonry does not show all posts when other category selected #337739Hi Josue,
I just updated the theme to 3.0.1. but this issue still exists.
Regards,
StephenOctober 14, 2014 at 10:13 pm in reply to: Full width Masonry, change the image title and caption height #335778Thank you Ismael, this worked perfectly. Eventually I want a more enhanced method to display the excerpt and I added a feature request for that: “Option for Masonry to always show title and on mouse over add the excerpt”.
You guys are giving excellent support and I recommend my friends to use this same theme because of that and of course because the theme is beautiful.
So thanks again.Stephen
October 13, 2014 at 11:17 am in reply to: Full width Masonry, change the image title and caption height #334788Hi Ismael,
Thanks you for your response. I am using a child them, but I don’t know what to add to my functions.php file to just replace this parameter value. I was thinking something like the code below (which does not work). Can you assist?
/*Replace the image title on the full Masonry*/
function masonry_image_title() {
if($post_type == ‘attachment’ && strpos($html_tags[0], ‘a href=’) !== false)
{
$linktitle = ‘title=”‘.esc_attr($description).'”‘;
}
else if(strpos($html_tags[0], ‘a href=’) !== false)
{
$linktitle = ‘title=”‘.esc_attr(‘test’).'”‘;
}return $linktitle;
}That worked perfectly! Thank you so much.
Best regards,
StephenOctober 7, 2014 at 8:22 pm in reply to: Adjust home page to have Layerslider with sidebar instead of page wide #331867In the end, the most practical and fastest solution was to buy the plugin (only $17) which I did. That allowed me to do the things I wanted to do. It now is exactly how I wanted it, plus I could now also use this layerslider for my banners in the sidebar. You can see the result here: http://www.abundantforever.com/home/
Thanks anyway for your help.
Regards,Stephen
October 1, 2014 at 12:04 am in reply to: Adjust home page to have Layerslider with sidebar instead of page wide #327753Hi Yigit,
Disabling Layerslider just disables the layerslider. So that is not the solution. From another thread (https://kriesi.at/support/topic/how-to-update-layerslider/) I concluded that I would have to buy the plugin separately and then try to get that to work the way I want. My conclusion for now, too much work and possibly many issues I will run into. Maybe in future updates it will be possible to choose whether the layerslider is displayed full page width or not. Unless you have another solution that works with the bundled version? Maybe in an iframe or so?
Thanks, StephenSeptember 30, 2014 at 9:12 am in reply to: Adjust home page to have Layerslider with sidebar instead of page wide #327080Thank you Yigit, I will try that.
Best regards,Stephen
September 20, 2014 at 12:58 pm in reply to: Header Logo – Custom URL using child theme functions.php #322320Excellent, it works! This saves me a lot of research time.
Thank you very much.
This is the code I used in the end:add_filter(‘avf_logo_link’, ‘change_logo_url’);
function change_logo_url() {
$link = home_url(‘/home’);
return $link;September 12, 2014 at 9:16 am in reply to: How to display a full website in an iframe without scroll bars #317963Ok, I will figure that out. Thanks again for your great support.
Stephen
September 12, 2014 at 9:07 am in reply to: How to display a full website in an iframe without scroll bars #317958Thank you so much Josue, that was very helpful and saves me so much time. Now at least I can get my page now the way I need it.
I have one more question though. The template you made, is actually the page itself with the title and body hardcoded in it.
Is it easy to change it so that I can actually use it as a template in WordPress? In other words, that it takes the content from the page in WordPress using the Enfold theme? Or will that be a lot of programming?
Hopefully you can help me with this as well.
Thank you very much,Stephen
September 12, 2014 at 12:44 am in reply to: How to display a full website in an iframe without scroll bars #317700Thanks Josue,
I have looked at your suggestion and also tried so many other things. I searched the forum for hours, but I can’t find a solution.
I would think it would be something simple, but I have not enough knowledge to get it done.
When I look at the code of the Enfold blank template, it does a couple of things which I don’t understand (see below).
I just want my iframe be displayed full page. That should not be so hard should it?
Hope you can guide me some further to the solution.
Thanks,Stephen
<?php
/*
Template Name: Blank – No Header, no Footer
*/
/*
* A blank Template that allows you to build landing pages, coming soon pages etc
*/
global $avia_config;
$avia_config[‘template’] = “avia-blank”; //important part. this var is checked in header and footer php and if set prevents them from rendering. also an additional class is applied to the bodyif(!empty($avia_config[‘conditionals’][‘is_builder’]))
{
$avia_config[‘conditionals’][‘is_builder_template’] = true;
get_template_part(‘template-builder’);
exit();
}
else
{
get_template_part(‘page’);
exit();
}September 10, 2014 at 12:03 am in reply to: How to display a full website in an iframe without scroll bars #316160Thank you Josue. But that did not resolve my problem. I already use the “blank” template, but that adds a header en footer covering approx 40% of the height each with a grey area.
When I look at the code, I see (among many other stuf) these lines in the header:
<link rel=’stylesheet’ id=’avia-grid-css’ href=’http://mysite.com/wp1/wp-content/themes/enfold/css/grid.css?ver=2′ type=’text/css’ media=’all’ />
<link rel=’stylesheet’ id=’avia-base-css’ href=’http://mysite.com/wp1/wp-content/themes/enfold/css/base.css?ver=2′ type=’text/css’ media=’all’ />
<link rel=’stylesheet’ id=’avia-layout-css’ href=’http://mysite.com/wp1/wp-content/themes/enfold/css/layout.css?ver=2′ type=’text/css’ media=’all’ />
<link rel=’stylesheet’ id=’avia-scs-css’ href=’http://mysite.com/wp1/wp-content/themes/enfold/css/shortcodes.css?ver=2′ type=’text/css’ media=’all’ />
<link rel=’stylesheet’ id=’avia-popup-css-css’ href=’http://mysite.com/wp1/wp-content/themes/enfold/js/aviapopup/magnific-popup.css?ver=1′ type=’text/css’When I remove the lines with “avia-grid-css” and “avia-layout-css”, then I get the full page as I want it.
This is the current code I use:<style type=”text/css”>
body {scrolling:no;
}
iframe {position:absolute;
z-index:1;
top:0px;
left:0px;
border: 0 !important;
}
</style>
</head>
<body>
<iframe src=”http://another_site.com” height=”100%” width=”100%” frameborder=”0″></iframe>
</body>I copied the whole code below so you can see what my issue is. Basically, the “blank” template adds header and footer anyway..
Hope you can help.
Thanks,Stephen
———————————————————————————————————————————————-
<!DOCTYPE html>
<html lang=”en-US” prefix=”og: http://ogp.me/ns#” class=” html_boxed responsive responsive_large av-default-lightbox html_header_top html_logo_left html_main_nav_header html_menu_right html_slim html_header_sticky html_header_shrinking html_mobile_menu_phone html_disabled html_entry_id_1168 “>
<head>
<meta charset=”UTF-8″ /><!– page title, displayed in your browser bar –>
<link rel=”icon” href=”http://www.abundantforever.com/wp1/wp-content/uploads/abundantforever_logo_favicon_000001.png” type=”image/png”>
<!– add feeds, pingback and stuff–>
<link rel=”profile” href=”http://gmpg.org/xfn/11″ />
<link rel=”alternate” type=”application/rss+xml” title=”Abundant Forever RSS2 Feed” href=”http://www.abundantforever.com/feed/” />
<link rel=”pingback” href=”http://www.abundantforever.com/wp1/xmlrpc.php” /><!– mobile setting –>
<meta name=”viewport” content=”width=device-width, initial-scale=1, maximum-scale=1″><!– Scripts/CSS and wp_head hook –>
<!– This site is optimized with the Yoast WordPress SEO plugin v1.5.5.3 – https://yoast.com/wordpress/plugins/seo/ –>
<title>Start – Abundant Forever</title>
<link rel=”canonical” href=”http://www.abundantforever.com/start/” />
<meta property=”og:locale” content=”en_US” />
<meta property=”og:type” content=”article” />
<meta property=”og:title” content=”Start – Abundant Forever” />
<meta property=”og:url” content=”http://www.abundantforever.com/start/” />
<meta property=”og:site_name” content=”Abundant Forever” />
<!– / Yoast WordPress SEO plugin. –><link rel=”alternate” type=”application/rss+xml” title=”Abundant Forever » Feed” href=”http://www.abundantforever.com/feed/” />
<link rel=”alternate” type=”application/rss+xml” title=”Abundant Forever » Comments Feed” href=”http://www.abundantforever.com/comments/feed/” />
<link rel=”alternate” type=”application/rss+xml” title=”Abundant Forever » Start Comments Feed” href=”http://www.abundantforever.com/start/feed/” /><!– google webfont font replacement –>
<link rel=’stylesheet’ id=’avia-google-webfont’ href=’//fonts.googleapis.com/css?family=Droid+Sans’ type=’text/css’ media=’all’/>
<link rel=’stylesheet’ id=’custom-style-css’ href=’http://www.abundantforever.com/wp1/wp-content/plugins/enfold-latest-posts/asheu.css?ver=3.9.2′ type=’text/css’ media=’all’ />
<style type=’text/css’>body .cat-title {
border-bottom: 1px solid;
display: block;
}
body .parent-cat .child-cat li {
margin-left: 35px;
}</style>
<link rel=’stylesheet’ id=’collapseomatic-css-css’ href=’http://www.abundantforever.com/wp1/wp-content/plugins/jquery-collapse-o-matic/light_style.css?ver=1.6′ type=’text/css’ media=’all’ />
<link rel=’stylesheet’ id=’avia-grid-css’ href=’http://www.abundantforever.com/wp1/wp-content/themes/enfold/css/grid.css?ver=2′ type=’text/css’ media=’all’ />
<link rel=’stylesheet’ id=’avia-base-css’ href=’http://www.abundantforever.com/wp1/wp-content/themes/enfold/css/base.css?ver=2′ type=’text/css’ media=’all’ />
<link rel=’stylesheet’ id=’avia-layout-css’ href=’http://www.abundantforever.com/wp1/wp-content/themes/enfold/css/layout.css?ver=2′ type=’text/css’ media=’all’ />
<link rel=’stylesheet’ id=’avia-scs-css’ href=’http://www.abundantforever.com/wp1/wp-content/themes/enfold/css/shortcodes.css?ver=2′ type=’text/css’ media=’all’ />
<link rel=’stylesheet’ id=’avia-popup-css-css’ href=’http://www.abundantforever.com/wp1/wp-content/themes/enfold/js/aviapopup/magnific-popup.css?ver=1′ type=’text/css’ media=’screen’ />
<link rel=’stylesheet’ id=’avia-media-css’ href=’http://www.abundantforever.com/wp1/wp-content/themes/enfold/js/mediaelement/skin-1/mediaelementplayer.css?ver=1′ type=’text/css’ media=’screen’ />
<link rel=’stylesheet’ id=’avia-print-css’ href=’http://www.abundantforever.com/wp1/wp-content/themes/enfold/css/print.css?ver=1′ type=’text/css’ media=’print’ />
<link rel=’stylesheet’ id=’avia-dynamic-css’ href=’http://www.abundantforever.com/wp1/wp-content/uploads/dynamic_avia/enfold.css?ver=540f70cb1c0b1′ type=’text/css’ media=’all’ />
<link rel=’stylesheet’ id=’avia-custom-css’ href=’http://www.abundantforever.com/wp1/wp-content/themes/enfold/css/custom.css?ver=2′ type=’text/css’ media=’all’ />
<script type=’text/javascript’ src=’http://www.abundantforever.com/wp1/wp-includes/js/jquery/jquery.js?ver=1.11.0′></script>
<script type=’text/javascript’ src=’http://www.abundantforever.com/wp1/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1′></script>
<script type=’text/javascript’>
/* <![CDATA[ */
var js_obj = {“ajax_url”:”http:\/\/www.abundantforever.com\/wp1\/wp-admin\/admin-ajax.php”,”ajax_loader”:”“};
/* ]]> */
</script>
<script type=’text/javascript’ src=’http://www.abundantforever.com/wp1/wp-content/plugins/enfold-latest-posts/asheu.js?ver=3.9.2′></script>
<script type=’text/javascript’ src=’http://www.abundantforever.com/wp1/wp-content/themes/enfold/js/avia-compat.js?ver=2′></script>
<link rel=”EditURI” type=”application/rsd+xml” title=”RSD” href=”http://www.abundantforever.com/wp1/xmlrpc.php?rsd” />
<link rel=”wlwmanifest” type=”application/wlwmanifest+xml” href=”http://www.abundantforever.com/wp1/wp-includes/wlwmanifest.xml” />
<meta name=”generator” content=”WordPress 3.9.2″ />
<link rel=’shortlink’ href=’http://www.abundantforever.com/?p=1168′ />
<script type=’text/javascript’>
var colomatduration = ‘slow’;
var colomatslideEffect = ‘slideFade’;
</script>
<style>
.custom_font_style_1 {
color:Crimson;
background-image: none !important;
padding: 0 0 10px 0;
font-style:italic;
font-weight:bold;
display:inline
}
</style>
<!–[if lt IE 9]><script src=”http://www.abundantforever.com/wp1/wp-content/themes/enfold/js/html5shiv.js”></script><![endif]–>
<style type=”text/css”></style><style type=”text/css”>
.synved-social-resolution-single {
display: inline-block;
}
.synved-social-resolution-normal {
display: inline-block;
}
.synved-social-resolution-hidef {
display: none;
}@media only screen and (min–moz-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2/1),
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min-device-pixel-ratio: 2),
only screen and (min-resolution: 2dppx),
only screen and (min-resolution: 192dpi) {
.synved-social-resolution-normal {
display: none;
}
.synved-social-resolution-hidef {
display: inline-block;
}
}
</style><!–
Debugging Info for Theme support:Theme: Enfold
Version: 2.9.1
Installed: enfold
AviaFramework Version: 1.9.1
AviaBuilder Version: 0.7
ML:1024-PU:12-PLA:9
–><style type=’text/css’>
@font-face {font-family: ‘entypo-fontello’; font-weight: normal; font-style: normal;
src: url(‘http://www.abundantforever.com/wp1/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.eot?v=3’);
src: url(‘http://www.abundantforever.com/wp1/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.eot?v=3#iefix’) format(’embedded-opentype’),
url(‘http://www.abundantforever.com/wp1/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.woff?v=3’) format(‘woff’),
url(‘http://www.abundantforever.com/wp1/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.ttf?v=3’) format(‘truetype’),
url(‘http://www.abundantforever.com/wp1/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.svg?v=3#entypo-fontello’) format(‘svg’);
} #top .avia-font-entypo-fontello, body .avia-font-entypo-fontello, html body [data-av_iconfont=’entypo-fontello’]:before{ font-family: ‘entypo-fontello’; }
</style>
</head><body id=”top” class=”page page-id-1168 page-template page-template-template-blank-php boxed droid_sans droid_sans avia-blank” itemscope=”itemscope” itemtype=”https://schema.org/WebPage” >
<div id=’wrap_all’>
<div id=’main’ data-scroll-offset=’88’>
<div class=’container_wrap container_wrap_first main_color fullsize’>
<div class=’container’>
<main class=’template-page content twelve alpha units’ role=”main” itemprop=”mainContentOfPage” >
<article class=’post-entry post-entry-type-page post-entry-1168′ itemscope=”itemscope” itemtype=”https://schema.org/CreativeWork” >
<div class=”entry-content-wrapper clearfix”>
<header class=”entry-content-header”></header><div class=”entry-content” itemprop=”text” ><style type=”text/css”>
body {scrolling:no;
}
iframe {position:absolute;
z-index:1;
top:0px;
left:0px;
border: 0 !important;
}
</style>
<p></head><br />
<body><br />
<iframe src=”http://www.abundantforever.com” height=”100%” width=”100%” frameborder=”0″></iframe><br />
</body></p>
</div><footer class=”entry-footer”></footer> </div>
</article><!–end post-entry–>
<!–end content–>
</main>
</div><!–end container–>
</div><!– close default .container_wrap element –>
<!– end main –></div><!– end wrap_all –></div>
<script type=’text/javascript’>
/* <![CDATA[ */
var avia_framework_globals = avia_framework_globals || {};
avia_framework_globals.frameworkUrl = ‘http://www.abundantforever.com/wp1/wp-content/themes/enfold/framework/’;
avia_framework_globals.installedAt = ‘http://www.abundantforever.com/wp1/wp-content/themes/enfold/’;
avia_framework_globals.ajaxurl = ‘http://www.abundantforever.com/wp1/wp-admin/admin-ajax.php’;
/* ]]> */
</script><script type=’text/javascript’ src=’http://www.abundantforever.com/wp1/wp-content/themes/enfold/js/avia.js?ver=2′></script>
<script type=’text/javascript’ src=’http://www.abundantforever.com/wp1/wp-content/themes/enfold/js/shortcodes.js?ver=2′></script>
<script type=’text/javascript’ src=’http://www.abundantforever.com/wp1/wp-content/themes/enfold/js/aviapopup/jquery.magnific-popup.min.js?ver=2′></script>
<script type=’text/javascript’>
/* <![CDATA[ */
var mejsL10n = {“language”:”en-US”,”strings”:{“Close”:”Close”,”Fullscreen”:”Fullscreen”,”Download File”:”Download File”,”Download Video”:”Download Video”,”Play\/Pause”:”Play\/Pause”,”Mute Toggle”:”Mute Toggle”,”None”:”None”,”Turn off Fullscreen”:”Turn off Fullscreen”,”Go Fullscreen”:”Go Fullscreen”,”Unmute”:”Unmute”,”Mute”:”Mute”,”Captions\/Subtitles”:”Captions\/Subtitles”}};
var _wpmejsSettings = {“pluginPath”:”\/wp1\/wp-includes\/js\/mediaelement\/”};
/* ]]> */
</script>
<script type=’text/javascript’ src=’http://www.abundantforever.com/wp1/wp-includes/js/mediaelement/mediaelement-and-player.min.js?ver=2.14.2′></script>
<script type=’text/javascript’ src=’http://www.abundantforever.com/wp1/wp-includes/js/mediaelement/wp-mediaelement.js?ver=3.9.2′></script>
<script type=’text/javascript’ src=’http://www.abundantforever.com/wp1/wp-includes/js/comment-reply.min.js?ver=3.9.2′></script>
<span class=”avia_hidden_link_text”>Scroll to top</span>
<div id=”fb-root”></div>
</body>
</html>Hi Devin,
Thank you for your quick reply. Are there people at Kriesi who do this kind of customizations? If so, is it possible to get a quote? And if not, do you have suggestions where to look for a good developer who knows this Enfold theme? What would be the required skills for such developer?
Hopefully you can answer these questions.
Best regards,Stephen
-
AuthorPosts