LinaTee
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] 📣 The Events Calendar 4.6.26The update has shut our website down twice.
Forum: Themes and Templates
In reply to: [Mercantile] blog layoutThis is it!!! Thank you
Forum: Themes and Templates
In reply to: [Mercantile] blog layoutThis is exactly what I wanted on the desktop but it looks awful in mobile. Do you have a suggestion?
Forum: Themes and Templates
In reply to: [Mercantile] blog layoutThank you for this code. When I use it, it does make the blogs go into 3 columns but the rest of the site is put in a single column. I just need the blog page to be in the columns.
Forum: Themes and Templates
In reply to: [Enlightenment] No content on iPad or iPhoneI just saw that this theme has not been updated since 2015 so I’m guessing its out dated. Find a new theme…that sucks, I was excited about this theme.
Forum: Themes and Templates
In reply to: [Customizr] Replace social icon in header and footerForum: Themes and Templates
In reply to: [Customizr] Replace social icon in header and footerThank you!!!! The footer is working now ( I have to use the CPanel or FTP to add to php function now instead of the childs theme)
I still am not able to get the Social media Icons in the same line as the menu. For example,
Participate Exhibits About Contact social media icons
If this isn’t do able they are ok where they are.
I also need to know where to put the code for my donate button. I would like it above the menu
Thanks again for your help and this awesome theme!
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Donation button in headerMatt,
Thank you. That pop up is fancy. Just what I was looking forForum: Themes and Templates
In reply to: [Customizr] Error code shut down my site…HELP ME PLEASE!!!PS thank you rengeiw, your last comment allowed me to think about the code and fix it
Forum: Themes and Templates
In reply to: [Customizr] Error code shut down my site…HELP ME PLEASE!!!I just went in and deleted the whole php code and saved it so the site is back. I did something to the main code and since I do not know what that looks like I couldn’t fix it. I’ll just start over.
ThanksForum: Themes and Templates
In reply to: [Customizr] Error code shut down my site…HELP ME PLEASE!!!Yes you are right, that was my mistake when pasting it. This is the code
<?php
/* Write your awesome functions below *//****** CODE TO PUT WIDGET BEFORE FEATURE IMAGE ON HOMEPAGE */
add_filter( ‘tc_default_widgets’ , ‘add_featured_page_widget’ );
function add_featured_page_widget( $defaults ) {
$defaults[‘fp_widgets’] = array(
‘name’ => __( ‘Featured Pages Widget’ , ‘customizr’ ),
‘description’ => __( ‘Above the featured pages area on home’ , ‘customizr’ )
);
return $defaults;
}add_action(‘__before_fp’ , ‘display_my_fp_widget’);
function display_my_fp_widget() {
dynamic_sidebar(‘fp_widgets’);
}/****** END OF CODE FOR WIDGET */
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
add_filter( ‘tc_credits_display’, ‘my_credits_display’ );
function my_credits_display($html) {
$logo_src = esc_attr ( tc__f( ‘__get_option’ , ‘tc_logo_upload’) ) ;
if ( empty($logo_src) )
return $html;
if ( is_numeric($logo_src) ) {
$_attachment_data = wp_get_attachment_image_src( $logo_src , ‘large’ );
$logo_src = $_attachment_data[0];
}
?>
<div class=”span4 credits”>
<?php
$credits = sprintf( ‘<p> · © %1$s %4$s · Designed by %5$s ·</p>’,
esc_attr( date( ‘Y’ ) ),
esc_url( home_url() ),
esc_attr(get_bloginfo()),
‘<img src=”‘.$logo_src.'” alt=”‘.esc_attr(get_bloginfo()).'”>’,
‘Press Customizr‘
);
echo $credits;
?>
</div>
<?php
}——————–
Forum: Themes and Templates
In reply to: [Customizr] Error code shut down my site…HELP ME PLEASE!!!Menaka S. thank you for your quick response. I was doing a travel day yesterday and didn’t see this until now. Thank you.
So I can not get to the child’s theme php.function through the site but in the C Panel I can(please look at bottom of all my writing). I put the code in from your site to add a widget before the feature images on the home page…which all worked out great. It wasn’t until I added the new code that I copied above (the link) and went to look at the site that the error appeared.
I have never touched the php function because I have always been terrified of it and breaking the site, which looks like I did.
I also found this link on you tube that I think could help https://www.youtube.com/watch?v=434sUQbBum8&list=TLuJ4UpHDyyQQ but I’m nervous about doing it because I haven’t ever done anything like this.<?php
/* Write your awesome functions below *//****** CODE TO PUT WIDGET BEFORE FEATURE IMAGE ON HOMEPAGE */
add_filter( ‘tc_default_widgets’ , ‘add_featured_page_widget’ );
function add_featured_page_widget( $defaults ) {
$defaults[‘fp_widgets’] = array(
‘name’ => __( ‘Featured Pages Widget’ , ‘customizr’ ),
‘description’ => __( ‘Above the featured pages area on home’ , ‘customizr’ )
);
return $defaults;
}add_action(‘__before_fp’ , ‘display_my_fp_widget’);
function display_my_fp_widget() {
dynamic_sidebar(‘fp_widgets’);
}/****** END OF CODE FOR WIDGET */
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
add_filter( ‘tc_credits_display’, ‘my_credits_display’ );
function my_credits_display($html) {
$logo_src = esc_attr ( tc__f( ‘__get_option’ , ‘tc_logo_upload’) ) ;
if ( empty($logo_src) )
return $html;
if ( is_numeric($logo_src) ) {
$_attachment_data = wp_get_attachment_image_src( $logo_src , ‘large’ );
$logo_src = $_attachment_data[0];
}
?>
<div class=”span4 credits”>
<?php
$credits = sprintf( ‘<p> · © %1$s %4$s · Designed by %5$s ·</p>’,
esc_attr( date( ‘Y’ ) ),
esc_url( home_url() ),
esc_attr(get_bloginfo()),
‘<img src=”‘.$logo_src.'” alt=”‘.esc_attr(get_bloginfo()).'”>’,
‘Press Customizr‘
);
echo $credits;
?>
</div>
<?phpadd_action(‘__before_fp’ , ‘display_my_fp_widget’);
function display_my_fp_widget() {
dynamic_sidebar(‘fp_widgets’);
}/****** END OF CODE FOR WIDGET */
Forum: Themes and Templates
In reply to: [Gridsby] Home Widget SectionI’m so embarrassed. That is exactly what I didn’t do. I did watch the documentation and missed that simple step, I’m sorry. Thank you for taking your time to help me. I was getting so frustrated and thought I had followed everything in the documentation.
I love this theme. Thank you for your help.Forum: Themes and Templates
In reply to: [Gridsby] Home Widget SectionI have deleted and reinstalled the theme. I am using 1.1.5 version and still nothing is happening. It is showing up in the customizer but not on my site or in the preview section. I have the newest version of WordPress too. What is wrong? Please help.
ThanksForum: Themes and Templates
In reply to: [Clean Retina] remove space above logoYOUR THE BEST!!!! Those were the main codes I was messing with but didn’t have the styles correct. Thank you.