deBlogist
Forum Replies Created
-
Check Options in Customizr Pro Theme
hi,
I tried https://demo.presscustomizr.com/full-width-slider-with-call-to-actions/ it’s quite OK.
I guess with bigger Images or certain CSS settings the Jerking in Edge is stronger. Chrom, Firefox, Safari, certain always smoother.Forum: Themes and Templates
In reply to: [Customizr] Separator between header and main contentfor a while this is the Test Site:
https://artist.formdesign.ch/Forum: Themes and Templates
In reply to: [Customizr] Separator between header and main contentI found closest solution here:
//we add the action with priority set to 5 => it will be displayed in first position (before the slider if any) add_action ('__after_header' , 'add_content_after_header', 20); function add_content_after_header() { //checks if we are displaying the home page /*if ( !tc__f( '__is_home' ) ) return;*/ ?> <div id="my-content-header"> <div class="row-fluid"> <div class="span12 text-center"> <div class="svg"><img src="/path/to/image/img.svg" /></div> </div> </div> </div> <?php }- This reply was modified 7 years, 6 months ago by deBlogist.
Thanks to help me in the right direction.
I got it work using this:
function wpdev_before_after($content) { if(is_page() ) { $beforecontent = '<div><img id="maintop" class="aligncenter size-full wp-image-75" src="https://path/banner-01-wide.jpg" alt="" width="100%" /></div>'; $aftercontent = ''; $fullcontent = $beforecontent . $content . $aftercontent; } else { $fullcontent = $content; } return $fullcontent; } add_filter('the_content', 'wpdev_before_after');Now I have to find how to put it above the Titel too (the Hook is “the_title”), but I think I could figure it out, thanks for your Help.
`>
Hi, that’s my Workaround to reproduce the Layout of a Clients Page:
content-page.php ->
…
?><article id=”post-<?php the_ID(); ?>” <?php post_class(); ?> <?php generate_article_schema( ‘CreativeWork’ ); ?>>
<!– Template Mod. formdesign.ch START –>
<div><img id=”maintop” class=”aligncenter size-full wp-image-75″ src=”https://site.ch/path/banner-01-wide.jpg” alt=”” width=”100%” /></div>
<!– Template Mod. formdesign.ch END –>
<div class=”inside-article”>
<?php
/**
* generate_before_content hook.- This reply was modified 7 years, 7 months ago by deBlogist.
In another similar installation with a less complex Form the Form works with iOS for File upload
hi, same problem here, I use the customizr Template all latest Versions. Unfortunately, adding the feature “File upload” makes it the Form fail in iOS.
plugin Bootstrap for Contact Form 7 in use
Wow, quick and proper, thanks alot. Where can I donate …..
hi John, Thanks for your reply showing the way coming to a solution. The code I was trying was a Code you provide witch I actually just tried as a trial and error attempt. Regards
PS: I could Imagine that there is a Workaround witch unfortunately I didn’t find so far 🙂