thebizconnection1
Forum Replies Created
Viewing 8 replies - 1 through 8 (of 8 total)
-
Forum: Themes and Templates
In reply to: [Tempera] Blue bar under imagesForum: Themes and Templates
In reply to: [Tempera] Blue bar under imageshttps://0367168.netsolhost.com/tbc3/ oh here is my site.
Forum: Themes and Templates
In reply to: [Tempera] Remove Powered by Tempera & WordPressawesome that worked now i just have to position it now! Thanks so much!
Forum: Themes and Templates
In reply to: [Tempera] Remove Powered by Tempera & WordPressif (remove_action( 'cryout_footer_hook' ,'tempera_site_info' ,99 )) add_action ( 'cryout_footer_hook' , '?2014 City of Fairbury ', 99);
Forum: Themes and Templates
In reply to: [Tempera] Remove Powered by Tempera & WordPress<?php /* * Functions file * Calls all other required files * PLEASE DO NOT EDIT THIS FILE IN ANY WAY * * @package tempera */ // variable for theme version define ("TEMPERA_VERSION","0.9.9"); require_once(dirname(__FILE__) . "/admin/main.php"); // Load necessary admin files //Loading include files require_once(dirname(__FILE__) . "/includes/theme-setup.php"); // Setup and init theme require_once(dirname(__FILE__) . "/includes/theme-styles.php"); // Register and enqeue css styles and scripts require_once(dirname(__FILE__) . "/includes/theme-loop.php"); // Loop functions require_once(dirname(__FILE__) . "/includes/theme-meta.php"); // Meta functions require_once(dirname(__FILE__) . "/includes/theme-frontpage.php"); // Frontpage styling require_once(dirname(__FILE__) . "/includes/theme-comments.php"); // Comment functions require_once(dirname(__FILE__) . "/includes/theme-functions.php"); // Misc functions require_once(dirname(__FILE__) . "/includes/theme-hooks.php"); // Hooks require_once(dirname(__FILE__) . "/includes/widgets.php"); // Hooks require_once(dirname(__FILE__) . "/includes/ajax.php"); // Hooks ?>
This is the only thing that functions.php displays
Forum: Plugins
In reply to: [Social Media Widget] Custom link<?php $dir = dirname(__FILE__); echo “<p>Full path to this dir: ” . $dir . “</p>”; echo “<p>Full path to a .htpasswd file in this dir: ” . $dir . “/.htpasswd” . “</p>”; ?>
sorry the code didn’t post correctly
Forum: Plugins
In reply to: The events Calendar as my homepageoh and here is a link to my site https://www.dominymemoriallibrary.org/
Forum: Plugins
In reply to: The events Calendar as my homepageadd_filter('pre_get_posts', 'query_post_type'); function query_post_type($query) { if(is_category() || is_tag() || is_home() && empty( $query->query_vars['suppress_filters'] ) ) { $post_type = get_query_var('post_type'); if($post_type) $post_type = $post_type; else $post_type = array('post','tribe_events','attachment'); $query->set('post_type',$post_type); return $query; } }
this was the code if its easier this way
Viewing 8 replies - 1 through 8 (of 8 total)