Skip to content
Commits on Source (5)
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Big_Bob
*/
?>
<?php
if ( ((!is_active_sidebar( 'sidebar-1' ) && !has_nav_menu('menu-2')) && is_page())
|| ((is_active_sidebar( 'sidebar-1' ) || has_nav_menu('menu-2')) && is_page() &&
((get_theme_mod( 'big_bob_blog_sidebar_only', 'On' ) == 'On')
|| ((get_theme_mod( 'big_bob_blog_sidebar_only', 'On' ) == 'Home Only') && is_front_page())
|| ((get_theme_mod( 'big_bob_blog_sidebar_only', 'On' ) == 'Except Home') && !is_front_page()) ) ) ) :
?>
<main id="primary" class="site-footer bb-aligncenterstyle bb-wide-footer">
<?php
else :
?>
<footer id="colophon" class="site-footer bb-aligncenterstyle">
<?php
endif;
wp_nav_menu(
array(
'theme_location' => 'menu-3',
'menu_id' => 'bb-footer-menu',
'menu_class' => 'bb-foot-menu',
'fallback_cb' => false
)
);
get_sidebar('footer-1'); ?>
<div class="site-info">
<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'big-scene' ) ); ?>">
<?php
/* translators: %s: CMS name, i.e. WordPress. */
printf( esc_html__( 'Powered by %s', 'big-scene' ), 'WordPress' );
?>
</a>
<span class="sep"> | </span>
<?php
/* translators: 1: Theme name, 2: Theme author. */
printf( esc_html__( 'Theme: %1$s by %2$s.', 'big-scene' ), '<a href="https://wordpress.org/themes/big-scene/">Big Scene</a>', 'hosted by <a href="https://autistici.org/">Autistici/Inventati</a>' );
?>
</div><!-- .site-info -->
<a id="bb-back-to-top" href="#" class="btn btn-light btn-lg bb-back-to-top" role="button"><i class="fas fa-chevron-up"></i></a>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>
<?php
/**
* this add our style.css - questo aggiunge il nostro foglio di stile
*/
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
function my_theme_enqueue_styles() {
$parent_style = 'parent-style'; // This is 'twentytwenty-style' for the Twenty twenty theme.
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/style.css',
array( $parent_style ),
wp_get_theme()->get('Version')
);
}
@charset "UTF-8";
/*
Theme Name: Big-scene - noblogs patches
Template: big-scene
Description: Big-scene Child Theme - Urchin revision This theme is designed to give your users easy access to navigation controls and provides strict styling standards so that you can focus on pushing out your content. From small menus to large menus to scroll arrows to menus that can be extended into the sidebar and collapsed into the pop out menu for mobile navigation, the Big Scene theme will allow you to create a site where your users will never get lost and will always be able to find what they’re looking for. This theme features maximizing the use of images and videos as a way to give your site a unique look. It does this by creating a layout that adapts well to a variety of different header videos (including YouTube videos) and header images as well as background images and videos. Everything is designed with mobile compatibility in mind. Users may find that they can create a unique look by just uploading a video and a few images. It includes a sticky sidebar and multiple sticky navbar options and a slide panel menu for mobile browsers as well as multiple Gutenberg block extensions, and it has the ability to set menus and widgets in three different locations. Whether you’re interested in black, white, yellow, bubble pink, blood red, or puke green, the Big Scene theme provides multiple color palettes to get your site to match your message. In addition, it provides opacity range bars, so your background images don’t go to waste, but your text readability won’t be compromised.
Tested up to: 5.8
Requires PHP: 5.6
Author: Autistici Inventati
Author URI: https://noblogs.org
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: big-scene-child
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package FF_Multipurpose
*/
$show_content = ff_multipurpose_gtm( 'ff_multipurpose_show_homepage_content' );
if ( $show_content || ! is_front_page() ) : ?>
</div><!-- .row -->
</div><!-- .container -->
</div><!-- #content -->
<?php endif; ?>
<footer id="colophon" class="site-footer">
<?php get_template_part( 'template-parts/footer/footer', 'widget' ); ?>
<?php get_template_part( 'template-parts/footer/site-info' ); ?>
</footer><!-- #colophon -->
</div><!-- #page -->
<div id="scrollup" class="displaynone">
<a title="<?php echo esc_attr__( 'Go to Top', 'ff-multipurpose' ); ?>" class="scrollup" href="#"><i class="fas fa-angle-up"></i></a>
</div>
<?php wp_footer(); ?>
</body>
</html>
<?php
/**
* this add our style.css - questo aggiunge il nostro foglio di stile
*/
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
function my_theme_enqueue_styles() {
$parent_style = 'parent-style'; // This is 'twentytwenty-style' for the Twenty twenty theme.
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/style.css',
array( $parent_style ),
wp_get_theme()->get('Version')
);
}
<?php
/**
* FF Multipurpose Theme Customizer
*
* @package FF_Multipurpose
*/
/**
* Main Class for customizer
*/
class FF_Multipurpose_Customizer {
public function __construct() {
// Register Custozier Options.
add_action( 'customize_register', array( $this, 'register_options' ) );
// Add preview js.
add_action( 'customize_preview_init', array( $this, 'preview_js' ) );
// Enqueue js for customizer.
add_action( 'customize_controls_enqueue_scripts', array( $this, 'customize_control_js' ) );
}
/**
* Add postMessage support for site title and description for the Theme Customizer.
* Other basic stuff for customizer initialization.
*
* @param WP_Customize_Manager $wp_customize Theme Customizer object.
*/
public function register_options( $wp_customize ) {
$wp_customize->get_setting( 'blogname' )->transport = 'postMessage';
$wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage';
$wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage';
if ( isset( $wp_customize->selective_refresh ) ) {
$wp_customize->selective_refresh->add_partial( 'blogname', array(
'selector' => '.site-title a, body.home #custom-header .page-title',
'container_inclusive' => false,
'render_callback' => array( $this, 'partial_blogname' ),
) );
$wp_customize->selective_refresh->add_partial( 'blogdescription', array(
'selector' => '.site-description',
'container_inclusive' => false,
'render_callback' => array( $this, 'partial_blogdescription' ),
) );
}
$section_visibility = FF_Multipurpose_Customizer_Utilities::section_visibility();
$section_visibility['excluding-home'] = esc_html__( 'Excluding Homepage', 'ff-multipurpose' );
FF_Multipurpose_Customizer_Utilities::register_option(
array(
'settings' => 'ff_multipurpose_header_image_visibility',
'type' => 'select',
'sanitize_callback' => 'ff_multipurpose_sanitize_select',
'label' => esc_html__( 'Visible On', 'ff-multipurpose' ),
'section' => 'header_image',
'choices' => $section_visibility,
'priority' => 1,
)
);
/*A/I tolto pro
$wp_customize->add_section( new FF_Multipurpose_Upsell_Section( $wp_customize, 'upsell_section',
array(
'title' => esc_html__( 'FF Multipurpose Pro Available', 'ff-multipurpose' ),
'url' => 'https://fireflythemes.com/themes/ff-multipurpose-pro',
'backgroundcolor' => '#f06544',
'textcolor' => '#fff',
'priority' => 0,
)
) );*/
}
/**
* Render the site title for the selective refresh partial.
*
* @return void
* @since 1.0
*/
public function partial_blogname() {
bloginfo( 'name' );
}
/**
* Render the site tagline for the selective refresh partial.
*
* @return void
*
* @since 1.0
*/
public function partial_blogdescription() {
bloginfo( 'description' );
}
/**
* Binds JS handlers to make Theme Customizer preview reload changes asynchronously.
*
* @since 1.0
*/
public function preview_js() {
$min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
wp_enqueue_script( 'ff-multipurpose-customizer', get_template_directory_uri() . '/js/customizer-preview' . $min . '.js', array( 'customize-preview' ), ff_multipurpose_get_file_mod_date( get_template_directory() . '/js/customizer-preview' . $min . '.js' ), true );
}
/**
* Binds the JS listener to make Customizer ff_multipurpose_color_scheme control.
*
* @since 1.0
*/
public function customize_control_js() {
$min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
// Enqueue Select2.
wp_enqueue_script( 'ff-multipurpose-select2-js', trailingslashit( esc_url ( get_template_directory_uri() ) ) . 'js/select2' . $min . '.js', array( 'jquery' ), '4.0.13', true );
wp_enqueue_style( 'ff-multipurpose-select2-css', trailingslashit( esc_url ( get_template_directory_uri() ) ) . 'css/select2' . $min . '.css', array(), '4.0.13', 'all' );
// Enqueue Custom JS and CSS.
wp_enqueue_script( 'ff-multipurpose-custom-controls-js', trailingslashit( esc_url ( get_template_directory_uri() ) ) . 'js/customizer' . $min . '.js', array( 'jquery', 'jquery-ui-core', 'ff-multipurpose-select2-js', 'wp-color-picker' ), ff_multipurpose_get_file_mod_date( get_template_directory() . '/js/customizer' . $min . '.js' ), true );
wp_enqueue_style( 'ff-multipurpose-custom-controls-css', trailingslashit( esc_url ( get_template_directory_uri() ) ) . 'css/customizer' . $min . '.css', array( 'wp-color-picker' ), ff_multipurpose_get_file_mod_date( get_template_directory() . '/css/customizer' . $min . '.css' ), 'all' );
wp_enqueue_editor();
}
}
/**
* Initialize customizer class.
*/
$ff_multipurpose_customizer = new FF_Multipurpose_Customizer();
/**
* Enqueue Font Awesome.
* @return void
*/
if ( ! function_exists( 'ff_multipurpose_scripts_styles' ) ) {
function ff_multipurpose_scripts_styles() {
$min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
// Register and enqueue our icon font
// We're using the awesome Font Awesome icon font. http://fortawesome.github.io/Font-Awesome
wp_enqueue_style( 'font-awesome', trailingslashit( get_template_directory_uri() ) . 'css/font-awesome/css/all' . $min . '.css' , array(), '5.15.3', 'all' );
}
}
add_action( 'customize_controls_print_styles', 'ff_multipurpose_scripts_styles' );
/**
* Utility Class
*/
require get_theme_file_path( '/inc/customizer/utilities.php' );
/**
* Load all our Customizer Custom Controls
*/
require get_theme_file_path( '/inc/customizer/custom-controls.php' );
/**
* Theme Options
*/
require get_theme_file_path( '/inc/customizer/theme-options.php' );
/**
* Header Options
*/
require get_theme_file_path( '/inc/customizer/header-options.php' );
/**
* Sortable Sections
*/
require get_theme_file_path( '/inc/customizer/sortable-sections.php' );
/**
* Slider Options
*/
require get_theme_file_path( '/inc/customizer/slider.php' );
/**
* Hero Content
*/
require get_theme_file_path( '/inc/customizer/hero-content.php' );
/**
* What We Do section
*/
require get_theme_file_path( '/inc/customizer/wwd.php' );
/**
* Team section
*/
require get_theme_file_path( '/inc/customizer/team.php' );
/**
* Testimonial Section
*/
require get_theme_file_path( '/inc/customizer/testimonial.php' );
/**
* Portfolio Section
*/
require get_theme_file_path( '/inc/customizer/portfolio.php' );
/**
* Featured Content Section
*/
require get_theme_file_path( '/inc/customizer/featured-content.php' );
/**
* Promotion Headline
*/
require get_theme_file_path( '/inc/customizer/promotional-headline.php' );
/**
* Associate Logo
*/
require get_theme_file_path( '/inc/customizer/associate-logo.php' );
/**
* Customizer Reset Button.
*/
require get_theme_file_path( '/inc/customizer/reset.php' );
@charset "UTF-8";
/*
Theme Name: FF-multipurpose - noblogs patches
Template: ff-multipurpose
Description: ff-multipurpose Child Theme - Urchin revision FF Multipurpose is a free multipurpose WordPress Theme. This theme will suit all your needs for a multipurpose theme. You can make multiple designs using this single theme. It has all the features like breadcrumbs, associates logo to highlight your partners, featured content to showcase your content, portfolio to highlight your works, promotional headline to use as a call to action button for better UI, slider to highlight your images, team to show who is really behind your company, testimonial to show a list of your satisfied client feedback and what we do section to highlight the services you provide. Give your site an awesome and modern look with FF Multipurpose Theme with endless design possibilities.
Requires at least: 5.5
Tested up to: 5.8
Requires PHP: 5.6
Author: Autistici Inventati
Author URI: https://noblogs.org
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: ff-multipurpose-child
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package FF_Multipurpose
*/
?>
<div id="site-generator">
<div class="site-info one">
<div class="container">
<div id="footer-content" class="copyright">
<?php do_action( 'ff_multipurpose_footer' ); ?> - hosted by <a href="https://autistici.org">Autistici/Inventati</a>
</div> <!-- .footer-content -->
</div> <!-- .container -->
</div><!-- .site-info -->
</div>
<?php
/**
* The template for displaying the footer.
*
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
?>
</div><!-- #content -->
</div><!-- #page -->
<?php
/**
* lalita_before_footer hook.
*
*/
do_action( 'lalita_before_footer' );
?>
<div <?php lalita_footer_class(); ?>>
<?php
/**
* lalita_before_footer_content hook.
*
*/
do_action( 'lalita_before_footer_content' );
/**
* lalita_footer hook.
*
*
* @hooked lalita_construct_footer_widgets - 5
* @hooked lalita_construct_footer - 10
*/
do_action( 'lalita_footer' );
/**
* lalita_after_footer_content hook.
*
*/
do_action( 'lalita_after_footer_content' );
?>
</div><!-- .site-footer -->
<?php
/**
* lalita_after_footer hook.
*
*/
do_action( 'lalita_after_footer' );
wp_footer();
?>
</body>
</html>
<?php
/**
* this add our style.css - questo aggiunge il nostro foglio di stile
*/
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
function my_theme_enqueue_styles() {
$parent_style = 'parent-style'; // This is 'twentytwenty-style' for the Twenty twenty theme.
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/style.css',
array( $parent_style ),
wp_get_theme()->get('Version')
);
}
This diff is collapsed.
@charset "UTF-8";
/*
Theme Name: Lalita - noblogs patches
Template: lalita
Description: Lalita Child Theme - Urchin revision Lalita is a WPKoi theme under GPL license. You can find theme demos at wpkoi.com. Lalita has a clean, colorful style and design for portfolio, or agency content. The theme is responsive so looks good on almost every devices. You can setup multiple header styles, navigation styles and layouts. Build You site with Lalita Theme and share it with the world! You can also find a documentation with an install guide and a tutorial for the screenshot look on wpkoi.com/docs.
Tested up to: 5.8
Requires PHP: 7.0
Author: Autistici Inventati
Author URI: https://noblogs.org
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: lalita-child
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package NewsCard
*/
?>
<?php global $newscard_settings; ?>
</div><!-- row -->
</div><!-- .container -->
</div><!-- #content .site-content-->
<footer id="colophon" class="site-footer" role="contentinfo">
<?php if ( $newscard_settings['newscard_footer_featured_posts_hide'] === 0 ) {
$footer_newscard_cat = absint($newscard_settings['newscard_footer_featured_post_categories']);
$footer_post_type = array(
'posts_per_page' => 4,
'post__not_in' => get_option('sticky_posts'),
'post_type' => array(
'post'
),
);
if ( $newscard_settings['newscard_footer_featured_latest_post'] == 'category' ) {
$footer_post_type['category__in'] = $footer_newscard_cat;
}
$footer_newscard_get_featured_post = new WP_Query($footer_post_type); ?>
<div class="container">
<section class="featured-stories">
<?php newscard_sections_title($newscard_settings['newscard_footer_featured_latest_post'], $newscard_settings['newscard_footer_featured_posts_title'], $footer_newscard_cat); ?>
<div class="row gutter-parent-14">
<?php while ($footer_newscard_get_featured_post->have_posts()) {
$footer_newscard_get_featured_post->the_post(); ?>
<div class="col-sm-6 col-lg-3">
<div class="post-boxed">
<?php if ( has_post_thumbnail() ) { ?>
<div class="post-img-wrap">
<div class="featured-post-img">
<a href="<?php the_permalink(); ?>" class="post-img" style="background-image: url('<?php echo esc_url(get_the_post_thumbnail_url(get_the_ID(),'large')); ?>');"></a>
</div>
<div class="entry-meta category-meta">
<div class="cat-links"><?php the_category(' '); ?></div>
</div><!-- .entry-meta -->
</div><!-- .post-img-wrap -->
<?php } ?>
<div class="post-content">
<?php if ( !has_post_thumbnail() ) { ?>
<div class="entry-meta category-meta">
<div class="cat-links"><?php the_category(' '); ?></div>
</div><!-- .entry-meta -->
<?php } ?>
<?php the_title( '<h3 class="entry-title"><a href="' . esc_url( get_permalink() ) . '">', '</a></h3>' ); ?>
<?php if ( 'post' === get_post_type() ) { ?>
<div class="entry-meta">
<?php newscard_posted_on(); ?>
</div>
<?php } ?>
</div><!-- .post-content -->
</div><!-- .post-boxed -->
</div><!-- .col-sm-6 .col-lg-3 -->
<?php }
// Reset Post Data
wp_reset_postdata(); ?>
</div><!-- .row -->
</section><!-- .featured-stories -->
</div><!-- .container -->
<?php } ?>
<?php if ( is_active_sidebar('newscard_footer_sidebar') || is_active_sidebar('newscard_footer_column2') || is_active_sidebar('newscard_footer_column3') || is_active_sidebar('newscard_footer_column4') ) { ?>
<div class="widget-area">
<div class="container">
<div class="row">
<div class="col-sm-6 col-lg-3">
<?php
// Calling the Footer Sidebar Column 1
if ( is_active_sidebar( 'newscard_footer_sidebar' ) ) :
dynamic_sidebar( 'newscard_footer_sidebar' );
endif;
?>
</div><!-- footer sidebar column 1 -->
<div class="col-sm-6 col-lg-3">
<?php
// Calling the Footer Sidebar Column 2
if ( is_active_sidebar( 'newscard_footer_column2' ) ) :
dynamic_sidebar( 'newscard_footer_column2' );
endif;
?>
</div><!-- footer sidebar column 2 -->
<div class="col-sm-6 col-lg-3">
<?php
// Calling the Footer Sidebar Column 3
if ( is_active_sidebar( 'newscard_footer_column3' ) ) :
dynamic_sidebar( 'newscard_footer_column3' );
endif;
?>
</div><!-- footer sidebar column 3 -->
<div class="col-sm-6 col-lg-3">
<?php
// Calling the Footer Sidebar Column 4
if ( is_active_sidebar( 'newscard_footer_column4' ) ) :
dynamic_sidebar( 'newscard_footer_column4' );
endif;
?>
</div><!-- footer sidebar column 4 -->
</div><!-- .row -->
</div><!-- .container -->
</div><!-- .widget-area -->
<?php } ?>
<div class="site-info">
<div class="container">
<div class="row">
<?php
if ( $newscard_settings['newscard_social_profiles'] != '' ) { ?>
<div class="col-lg-auto order-lg-2 ml-auto">
<div class="social-profiles">
<?php echo esc_html( newscard_social_profiles() ); ?>
</div>
</div>
<?php } ?>
<div class="copyright col-lg order-lg-1 text-lg-left">
<div class="theme-link">
<?php echo esc_html__('Copyright &copy; ','newscard') . newscard_the_year() . newscard_site_link(); ?></div><?php if ( function_exists('the_privacy_policy_link') ) {
the_privacy_policy_link('<div class="privacy-link">', '</div>');
}
echo newscard_author_link() . newscard_wp_link(); ?>
hosted by <a href="https://autistici.org">Autistici/Inventati</a>
</div><!-- .copyright -->
</div><!-- .row -->
</div><!-- .container -->
</div><!-- .site-info -->
</footer><!-- #colophon -->
<div class="back-to-top"><a title="<?php esc_attr_e('Go to Top','newscard');?>" href="#masthead"></a></div>
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>
<?php
/**
* this add our style.css - questo aggiunge il nostro foglio di stile
*/
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
function my_theme_enqueue_styles() {
$parent_style = 'parent-style'; // This is 'twentytwenty-style' for the Twenty twenty theme.
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/style.css',
array( $parent_style ),
wp_get_theme()->get('Version')
);
}
This diff is collapsed.
@charset "UTF-8";
/*
Theme Name: Newscard - noblogs patches
Template: newscard
Description: Newscard Child Theme - Urchin revision NewsCard is a Multi-Purpose Magazine/News WordPress Theme. NewsCard is specially designed for magazine sites (food, travel, fashion, music, health, sports, photography), news sites, shopping sites, personal/photo blog and many more. There are Front Page Template, Sidebar Page Layout, Top Bar, Header Image/Overlay/Advertisement, Social Profiles and Banner Slider. It is also translation ready.
Requires PHP: 5.2
Tested up to: 5.8
Author: Autistici Inventati
Author URI: https://noblogs.org
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: newscard-child
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/