copyoppy
Forum Replies Created
-
Thanks it’s not working. I’ll fill the form ASAP.
OK here are the two websites:
1– https://okrikart.com/store-listing
2– https://nellashub.com/store-listing
Thanks a lot
Thanks I’ll have someone look into the CSS.
Best regardsI have inserted the Map Api in the Dokan Settings. I’ll check if the addresses entered are correct and get back to you.
ThanksForum: Themes and Templates
In reply to: [Zerif Lite] Text appearing before About SectionI can give you access to the backend if necessary.
ThanksForum: Themes and Templates
In reply to: [Zerif Lite] Text appearing before About SectionI did some custom CSS in the customizer section.
Thanks code works.
But does not display on mobile devices
Is there a way to make the SOLD BY tag show on mobile phone screens and other small screens?Thanks resolved.
Forum: Plugins
In reply to: [WooCommerce Better Thumbnail Navigation] Products on 404 Error PageHello pls can anyone help with this issue?
Forum: Themes and Templates
In reply to: [Business Club] static front pageThanks so much for the attention.
Forum: Themes and Templates
In reply to: [Business Club] static front pageI am actually using a child theme on the site.
Forum: Themes and Templates
In reply to: [Business Club] static front pageChild Themes Yes.
Templates No.
I did some trial and error on templates but couldn’t get it to work.Forum: Themes and Templates
In reply to: [Business Club] static front pageThis is my static front page
https://www.bromatworld.com/
for the company website am working on.I want a second one to represent a sub programme being run by the company. Currently I have been able to achieve this
https://www.bromatworld.com/kidscon/
But I need the space between the menu and the container removed so that it looks exactly like the homepage. Simply put I want the spaces around the container gone, a duplicate of the homepage.
Thanks.
Forum: Themes and Templates
In reply to: [Business Club] static front pageHow can I have another front page on my website?
Forum: Themes and Templates
In reply to: [Kindergarten] FooterI have done exactly what you said in trying to add the 3 column widgets but didn’t work. Here’s how my codes look
The footer.php file code:
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package Kindergarten*/
?></div><!– #content –>
<footer id=”colophon” class=”site-footer” role=”contentinfo”>
<?php
// Footer widget 1
if ( is_active_sidebar( ‘my_footer_widget_one’ ) ) :
dynamic_sidebar( ‘my_footer_widget’ );
endif;
// Footer widget 2
if ( is_active_sidebar( ‘my_footer_widget_two’ ) ) :
dynamic_sidebar( ‘my_footer_widget_two’ );
endif;
// Footer widget 3
if ( is_active_sidebar( ‘my_footer_widget_three’ ) ) :
dynamic_sidebar( ‘my_footer_widget_three’ );
endif;
?><div class=”site-info”>
<?php printf( __( ‘Copyright © 2017 %s’, ‘kindergarten’ ), ‘The Sultana School’ ); ?>
<span class=”sep”> </span>
<?php printf(
__( ‘%1$s by %2$s.’, ‘smartsford’ ),
__(‘ Designed and Developed’, ‘smartsford’),
‘‘.__(‘Smartsford Solutions’, ‘smartsford’ ).’‘ );?>
</div><!– .site-info –>
</footer><!– #colophon –><div id=”back_top”><i class=”fa fa-angle-up”></i></div>
</div><!– #page –><?php wp_footer(); ?>
</body>
</html>The functions.php file code:
<?php
// Exit if accessed directly
if ( !defined( ‘ABSPATH’ ) ) exit;// BEGIN ENQUEUE PARENT ACTION
// AUTO GENERATED – Do not modify or remove comment markers above or below:if ( !function_exists( ‘chld_thm_cfg_parent_css’ ) ):
function chld_thm_cfg_parent_css() {
wp_enqueue_style( ‘chld_thm_cfg_parent’, trailingslashit( get_template_directory_uri() ) . ‘style.css’, array( ) );
}
endif;
add_action( ‘wp_enqueue_scripts’, ‘chld_thm_cfg_parent_css’, 10 );if ( !function_exists( ‘child_theme_configurator_css’ ) ):
function child_theme_configurator_css() {
wp_enqueue_style( ‘chld_thm_cfg_child’, trailingslashit( get_stylesheet_directory_uri() ) . ‘style.css’, array( ‘chld_thm_cfg_parent’ ) );
}
endif;
add_action( ‘wp_enqueue_scripts’, ‘child_theme_configurator_css’ );function myCustomFooterWidget() {
register_sidebar( array(
‘name’ => ‘My Footer Widget’,
‘id’ => ‘my_footer_widget’,
‘before_widget’ => ‘<div class=”footer-widget”>’,
‘after_widget’ => ‘</div>’,
‘before_title’ => ‘<h2 class=”widget-title”>’,
‘after_title’ => ‘</h2>’,
) );
//Footer widget 2
register_sidebar( array(
‘name’ => ‘My Footer Widget 2’,
‘id’ => ‘my_footer_widget_two’,
‘before_widget’ => ‘<div class=”footer-widget footer-wdget-2″>’,
‘after_widget’ => ‘</div>’,
‘before_title’ => ‘<h2 class=”widget-title”>’,
‘after_title’ => ‘</h2>’,
) );
//Footer widget 3
register_sidebar( array(
‘name’ => ‘My Footer Widget 3’,
‘id’ => ‘my_footer_widget_three’,
‘before_widget’ => ‘<div class=”footer-widget footer-wdget-3″>’,
‘after_widget’ => ‘</div>’,
‘before_title’ => ‘<h2 class=”widget-title”>’,
‘after_title’ => ‘</h2>’,
) );
}
add_action( ‘widgets_init’, ‘myCustomFooterWidget’ );// END ENQUEUE PARENT ACTION