Leapmkt12
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Featured Pages on another page other than homeBasically my client started with a hybrid theme which uses custom sidebars hence looking for the right ‘filter or hook’ plus he wants a ‘swf’ file in the header any hints, tips or just pointer to the right page of snippets code or information would be really appreciated. Thanx Still learning php with all the wp hooks
Sorted ??
Forum: Themes and Templates
In reply to: [Preference Lite] Footer Copyright Customizationtgd you’re a legend thankyou!!
Forum: Themes and Templates
In reply to: [Customizr] Featured Pages on another page other than homeI guess I’m more worried about ‘breaking’ the theme. WHere would I find the codes to start rearranging side bar php in customizr? Is there as certain line of code to look for?
Forum: Themes and Templates
In reply to: [Customizr] Featured Pages on another page other than homeI need to find (learn) the right code snippet to add a customised sidebar to different pages. The plugin was already installed on a hybrid theme for this site & I’ve taken over & changed the theme to Customizr due to its flexibility (& the support from you guys)it is looked after by WPMU DEV & is simply Custom Sidebars
HI, this is fantastic! Thank you – just one query, in Customizr the right side bar is span3 & for some reason my side bar is now underneath this blog container rather than to the right. Is there some code I am missing?
Forum: Themes and Templates
In reply to: [Customizr] Featured Pages on another page other than homeI’m sure it will work with Customizr I just need to look at the code & possibly custom pages.php
Its a plugin that allows you to set certain side-bar widgets on different pages.
Sorry for all the questions, I’m a marketer that fell into website design to keep consistent branding for my clients. HTML & CSS is pretty good, PHP is still a big unknown. Really apprecaite how much help & support you all offer.Forum: Themes and Templates
In reply to: [Customizr] Featured Pages on another page other than homeThat is awesome!! Thank you so much. Love what you can do with this theme! Final question … is it possible to set up custom side bars? The theme I am changing this clients site over from used them as they have four different product categories? The “Custom side bars” plug in is already installed & set up, but obviously doesn’t work with Customizr.
ElectricFeet you’re a legend! Thanks again.
Forum: Themes and Templates
In reply to: [Customizr] Customizr child themeWnet back the next morning & apart from the encoding issue with the symbols, it was sorted! Obviously my cache had to be cleared. Thanks d4z_c0nf for the second pair of eyes!
Forum: Themes and Templates
In reply to: [Customizr] Customizr child themeThanks have changed that. Have gone over it with chrome, safari & explorer ?? This is the 4th website I’ve used customizr on however this is the first one I’ve changed from another theme – which was really clunky & ugly. I can’t seem to get the css to pull through & fix the encoding as the style.css & functions.php in the child theme are both set to UTF-8.
Forum: Themes and Templates
In reply to: [Customizr] Customizr child themeOh the website is https://saegroup.com.au/
Forum: Themes and Templates
In reply to: Customizr child theme functions.php fileAll sorted found a spare ?>
Forum: Themes and Templates
In reply to: Customizr child theme functions.php fileThanks Esmi, I am aware of where the issue is, as stated I have gone right over this file (functions.php)to make sure there are no spaces or empty lines. This is in my child theme. I am looking for someone to throw a second set of eyes over & tell what I’m missing, as it has to be something pretty basic. Usually this comes up with a space in the code and I’ve gone over this so many times it not funny ??
The website is https://mermaidpavingandtiling.com.au‘<?php
add_action( ‘__after_logo’ , ‘display_my_site_title’);
function display_my_site_title() {
//first checks if there is a logo uploaded
$logo_src = esc_url ( tc__f( ‘__get_option’ , ‘tc_logo_upload’) ) ;
if ( empty($logo_src) )
return;
//then print the site title after
printf(‘<h1>%4$s</h1>’,
esc_url( home_url( ‘/’ ) ),
esc_attr( get_bloginfo( ‘name’) ),
esc_attr( get_bloginfo( ‘description’ ) ),
esc_attr( get_bloginfo( ‘name’) )
);
}
//remove ‘Category Archives:’ text
add_filter(‘tc_category_archive_title’, ‘rdc_category_archive_title’);
function rdc_category_archive_title($output) {
return preg_replace(‘|Category Archives:|’, null, $output);
}
add_filter(‘tc_credits_display’, ‘my_custom_credits’);
function my_custom_credits(){
$credits = ‘Created by Marketing Leap‘;
$newline_credits = ‘Contact Marketing Leap‘;
return ‘
<div class=”span4 credits”>
<p> · © ‘.esc_attr( date( ‘Y’ ) ).’ ‘.esc_attr(get_bloginfo()).’ · ‘.($credits ? $credits : ‘Developed by Marketing Leap‘).’ ·’.($newline_credits ? ‘
· ‘.$newline_credits.’ ·’ : ”).'</p> </div>’;
}
add_filter(‘tc_slider_display’, ‘content_after_slider’);
function content_after_slider($html) {
$after_slider = ‘<p>
Mermaid Paving and Tiling are the Gold Coast\’s Paving and Tiling specialists. With more than 20 years experience, we look after some of the biggest pool companies here on the Gold Coast,as well as resorts and even domestic home paving and tiling. We are the experts from sandstone to porcelain and strive to give you the finish you deserve.
</p><p>
We cater for the following:- Residential paving and tiling, from bathrooms to driveways
- Commercial paving and tiling
- All pool tiling and surrounds
- Pool renovations both residential and commercial
- Artistic Rock work, from sandstone to pebble paving and tiling
</p>
<p>
We guarantee our work to the highest standard and we take the time with you to ensure we understand what you need and want from your tiling or paving project. In turn, you receive the best professional advice not only on the materials but the best procedure for your job.
</p>‘;
//Put your HTML inside this var
return $html.$after_slider;
}
add_filter (‘tc_social_in_header’ , ‘custom_social_in_header’);
function custom_social_in_header($resp) {
//class added if not resp
$class = (‘resp’ == $resp) ? ”:’span5′
?>
<div class=”social-block <?php echo $class ?>”>
<?php if ( 0 != tc__f( ‘__get_option’, ‘tc_social_in_header’) ) : ?>
<?php echo tc__f( ‘__get_socials’ ) ?>
PH: 0404 448 491
<img src=”https://mermaidpavingandtiling.com.au/wp-content/uploads/2014/04/tap-to-call-button.png”>
<?php endif; ?>
</div><!–.social-block–>
<?php
}
?>’Forum: Themes and Templates
In reply to: [Customizr] Post Icon/Category ArchivesYay!! Sorted on two customers websites!
Forum: Themes and Templates
In reply to: [Customizr] Add a tap to callThx