I know i need purchase the PRO to be able to remove the powered by.
Actually it’s very easy to customize that footer link with a child theme. And under no circumstances is any author permitted to bar someone from doing that here. ??
Here’s one way you can do it.
Create and activate a child theme.
https://codex.www.ads-software.com/Child_Themes
Make a wp-content/themes/byblos-child
directory. In that directory place these two files.
style.css
/*
Theme Name: Byblos Child Theme
Description: Child theme for Byblos
Template: byblos
Version: 0.1.0
*/
functions.php
<?php
function mh_child_style() {
wp_enqueue_style( 'byblos-parent-style', get_template_directory_uri() . '/style.css' );
// wp_enqueue_style( 'byblos-child-style', get_stylesheet_uri() );
}
add_action( 'wp_enqueue_scripts', 'mh_byblos_child_style' , 5 );
Which will setup the child theme for you. Activate “Byblos Child Theme” to make it active.
Now copy byblos/header.php
to byblos-child/header.php
and edit line 54 to this.
<?php // sc_footer(); ?>
That will comment out the footer link. Below that add what you want. For example:
<a href="https://codex.www.ads-software.com/Child_Themes">Powered By a WordPress Child Theme</a>
And save that file. That will change the “Designed by SmartCat” to “Powered By a WordPress Child Theme”.