pizzaazzip
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Intenso] Make a Child Theme of IntensoOk that’s good to know! I’m tempted to look into a plugin since I’ve never attempted such a thing but worst comes to worst is I can recreate the entire theme as my own child theme of Avventura and copy over the sytle.css file every time there’s an update. Thanks!
Forum: Plugins
In reply to: [Constant Contact Forms] change email notification addressThank you very much for your reply! I didn’t run into any problems putting the code in my functions.php file, I’m just waiting on the user on my site that runs the newsletter to get back with me on if emails are going to them now. I assume it’s working fine because it appears I am no longer receiving those emails.
Forum: Plugins
In reply to: [Constant Contact Forms] change email notification addressI’m not OP but I made a functions.php in my child theme to use this code and I caused my site to get a HTTP 500 error. I’m 99% I am doing this wrong, are there some recommended resources I could look into to get this squared away?
<?php add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' ); function my_theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); } /* This changes the ConstantContact emails to go to an email address other than the admin address in general settings, I found it on their support page here: https://wordpress.org/support/topic/change-email-notification-address/ */ public function get_email() { $email = get_option( 'admin_email' ); /** * Filters the email to send Constant Contact Forms admin emails to. * * @since 1.3.0 * * @param string $email Email address to send to. Default admin_email option. */ return apply_filters( 'example@example.com', $email ); } ?>Forum: Plugins
In reply to: [The Events Calendar] Blank maps after WP 4.0.1 updateI’m having a similar problem that goes away when I use the twentytwelve theme. My theme is Colorlib Sparkling
Forum: Fixing WordPress
In reply to: I need a public visitor counterYour solution was so helpful.
Forum: Fixing WordPress
In reply to: Page won't open, browser tries to download a file insteadthe .htaccess file edit worked. Thanks for your post.
Ok, I’ll have to give it a shot. Thanks!
Forum: Plugins
In reply to: [Breadcrumb NavXT] How to add external sites to the front of the breadcrumbsThat did it! I just
<div class="breadcrumbs"> <a href=http://website.com>Homepage </a> > <a href=http://website.com/page/>page</a> > <?php if(function_exists('bcn_display')) { bcn_display(); }?> </div>and it seems to work well. Thanks!
I’m looking for the day of the event. Where would I put that in my shortcode? I tried to throw it in the existing one and changed some format but did not add the day of the week.