Squidy McSquid
Forum Replies Created
-
WordPress should show your URI under the contact integration panel. Take that and paste it into your constant contact account under Redirect URI
You took the API key and secret code from constant contact and put it in wordpress under contact > integration > setup integration, correct?
It should work
(edit: sorry I’m an idiot. I thought I was in the Contact Form 7 forum- please ignore this reply)
- This reply was modified 4 years ago by Squidy McSquid. Reason: Wrong forum
Forum: Plugins
In reply to: [Jquery Validation For Contact Form 7] Custom codelulz. What are you 12 years old? Sitzpinkler
Forum: Plugins
In reply to: [Jquery Validation For Contact Form 7] Custom codeIs English not your first language? Because there is no way I’m buying this plugin if this is what your support is like.
Why don’t you take that glass sphere and shove it up where the sun doesn’t shine. I solved it with another plugin anyhow. You’re useless
Edit: never mind I get it now. You’re just a useless incel shut-in. Not the plugin author.
- This reply was modified 4 years, 3 months ago by Squidy McSquid.
Forum: Plugins
In reply to: [Search & Replace] Where is it in admin?Ok nevermind. The custom theme I was using (made by someone else) had the tool menu turned off!
Right after I posted this I just realized I got “terms” and “tags” mixed up. (I blame drupal)
So to answer my own question you display the category by using the POST INFO widget.
Then:
+Add Item
Change “type” to terms
Change taxonomy to “categories”Forum: Networking WordPress
In reply to: Help with 2 sites in subdirectories on 1 domainThe only solution that I could get to work is to go into phpmyadmin and locate the 3 wp_options (3 sites) in the structure. Then manually edit the urls and home for the 2 sites that were in subdirectories to add /ca and /us
The question is why the hell didn’t it add those when I installed them! Sorry Just venting after 2 days ?? I suspect its the wordpress (ultimate) plan my client has with godaddy. I swear they’ve caused me nothing but grief since 2010. Using namescheap and dreamhost for everything I can in the future.
- This reply was modified 6 years, 7 months ago by Squidy McSquid.
Forum: Networking WordPress
In reply to: Help with 2 sites in subdirectories on 1 domainThanks I’ll take a look.
The weird thing is it shows the correct urls under Sites > All Sites and when I click edit it shows the correct url for the specific site in the Info tab. But on the Settings tab that summarizes the sites settings both the Site Url and Home are wrong. If I edit them and hit ‘save’ it just resets them back to the root url (skyire.com)
Forum: Plugins
In reply to: [Conditional Fields for Contact Form 7] add more buttonI was looking for the same thing. Basically exactly like you have in your plugin admin in the “Conditional Fields” tab.
Definitely worth paying for the pro version if you let the user “+ add” and “- remove” fields as they fill out the form. I’m gonna have to try it with javascript in the meantime.
Forum: Plugins
In reply to: [Product Attachment for WooCommerce] How do I use this?Okay sorry I just realized this plugin isn’t for letting customers upload their own attachments, it’s just for admin to offer a download link to customers
Forum: Plugins
In reply to: [WooCommerce Cart Tab] Cart settings have disappearedReadme installation section still says “Choose your display settings on the catalog tab of the WooCommerce settings screen ” in the readme and on www.ads-software.com plugins section so I think people are looking in the wrong place.
Also it doesn’t work with the woocommerce storefront theme. I don’t see anything under appearance > customize about the cart tab. It only shows up when I switch themes to something like Twenty Sixteen
- This reply was modified 7 years, 8 months ago by Squidy McSquid.
Forum: Plugins
In reply to: [Contact Form DB] Blank screen on large database exportThat worked like a charm! I used advanced options and then clicked the unbuffered checkbox. Yea it must have been timing out. Shared hosting for the win. Would have used a better server if I’d known this contest would get so many entries.
Thanks for the prompt reply.Forum: Plugins
In reply to: [Download Manager] Jquery error when using category shortcodeThanks, I missed your reply. I got it working. I think it was a conflict with another plugin.
Url was https://www.shyamalakiru.com/downloads/Forum: Hacks
In reply to: How to list date from an advanced custom field?I’m surprised this worked but I figured it out by cobbling together other peoples code from various threads and the api. I also added a way to make the date more readable since the field stores it in ymd format which looks ugly. If you want to tweak it just change the settings in “date_format($date,’d F Y’)” according to php manual
<?php // args $args = array( 'post_type' => 'events', 'posts_per_page' => -1, 'meta_key' => 'speaking_event_date', 'orderby' => 'meta_value_num', 'order' => 'ASC' ); // query $wp_query = new WP_Query( $args ); // loop while( $wp_query->have_posts() ) { $wp_query->the_post(); $date = date_create(''.get_field('speaking_event_date').''); echo '<li>' . get_the_title() . ' - ' . date_format($date,'d F Y') . '</li>'; echo '<p>' . get_the_content() . '</p>'; } ?>
Forum: Fixing WordPress
In reply to: Adding First and Last classes to menu itemsThe code in that thread still works:
/* add first and last classes to nav menus */ function add_first_and_last($output) { $output = preg_replace('/class="menu-item/', 'class="first-menu-item menu-item', $output, 1); $output = substr_replace($output, 'class="last-menu-item menu-item', strripos($output, 'class="menu-item'), strlen('class="menu-item')); return $output; } add_filter('wp_nav_menu', 'add_first_and_last');
Add this code to your functions.php file in your custom theme
If you don’t have a functions.php make a new file and add <?php to the top of it and paste that code. The end result will be a file that looks like this in the root directory of your custom theme / child theme:
<?php /* add first and last classes to nav menus */ function add_first_and_last($output) { $output = preg_replace('/class="menu-item/', 'class="first-menu-item menu-item', $output, 1); $output = substr_replace($output, 'class="last-menu-item menu-item', strripos($output, 'class="menu-item'), strlen('class="menu-item')); return $output; } add_filter('wp_nav_menu', 'add_first_and_last');
Doh! I just realized by reading code more closely it will swap out header image only if the feature image is at least as wide as your original header!!!
Problem solved. Thanks ??