invot
Forum Replies Created
-
Forum: Plugins
In reply to: [Community Events] My calendar not working at allSame problem. Events are not being saved and do not appear on the site. This is a fresh install on the 2015 theme.
Add this function to your
functions.phpfile:function get_reverse($id) { $meta = get_post_meta( $id ); $wtf = $meta['mfi-reloaded-images'][0]; // This is why we can't have nice things. $wtfArr = explode('"', $wtf ); $tid = $wtfArr[3]; $src = wp_get_attachment_image_src($tid, 'full'); return $src[0]; }Then just use
get_reverse( $id )and you’ll get the image on your site.Forum: Plugins
In reply to: [Infinite-Scroll] Does nothing in WP 4.0Whops… and this is resolved.
Forum: Plugins
In reply to: [Infinite-Scroll] Does nothing in WP 4.0I found a solution that worked. I had to add
idandclasstags to a number of my elements.The container of the posts had to be
id="blogContent"and the articles had to beclass="blogEntry"I’ll answer this myself: It’s a pro feature. http://wp-events-plugin.com/features/
Forum: Plugins
In reply to: [Theme Downloader] Not working in WordPress 3.8Same issue. Anyone find a fix?
Oh… and I’m still getting the same error:
[Fri Jan 24 11:04:30 2014] [10469975] [fcgid:warn] (104)Connection reset by peer: [client 198.24.246.162:4714] mod_fcgid: error reading data from FastCGI server, referer http://********************/wp-admin/admin.php?page=simple-woocommerce-csv-loader/admin/CSVLoader.php
[Fri Jan 24 11:04:30 2014] [10469975] [fcgid:warn] (104)Connection reset by peer: [client 198.24.246.162:4714] mod_fcgid: ap_pass_brigade failed in handle_request_ipc function, referer http://******************/wp-admin/admin.php?page=simple-woocommerce-csv-loader/admin/CSVLoader.php
Well, I found out the problem. My php.ini file had a really short timeout configuration. I changed my max_input_time from 30 to 260 and things worked better. I got 130 items imported instead of 5… however…
Now I’m getting this error:
Warning: copy(http:/*************/wp-content/uploads/2014/01/511-10010-036-L-XL_1.jpg): failed to open stream: No such file or directory in /home/content/75/10469975/html/shieldclothing/wp-content/plugins/simple-woocommerce-csv-loader/admin/CSVLoader.php on line 292
Here’s what my server log says:
[Fri Jan 24 10:25:31 2014] [10469975] [fcgid:warn] (104)Connection reset by peer: [client 198.24.246.162:46435] mod_fcgid: error reading data from FastCGI server, referer http://[SITE URL]/wp-admin/admin.php?page=simple-woocommerce-csv-loader/admin/CSVLoader.php
[Fri Jan 24 10:25:31 2014] [10469975] [fcgid:warn] (104)Connection reset by peer: [client 198.24.246.162:46435] mod_fcgid: ap_pass_brigade failed in handle_request_ipc function, referer http://[SITE URL]/wp-admin/admin.php?page=simple-woocommerce-csv-loader/admin/CSVLoader.php
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Manually Upload Dump FileCorrection: it says ‘HTTP error.’
Forum: Plugins
In reply to: [Simple Staff List] Featured Image not Sticking[edit] …nevermind…
Forum: Plugins
In reply to: [Simple Staff List] Staff Photo / Featured Image Not WorkingSo here’s my DON’T DO THIS THOUGH IT WORKS answer:
I decided to use Advanced Custom Fields to solve this problem. I created a custom field for the featured image. Linked it to post type “staff-member”, made the return value the Image URL, and then went into the plugin files for Simple Staff…
Editing simple-staff-list/_inc/user-view-show-staff-list.php, replace this code on line 88…if(has_post_thumbnail()){ $photo_url = wp_get_attachment_url( get_post_thumbnail_id() ); $photo = '<img class="staff-member-photo" src="'.$photo_url.'" alt = "'.$title.'">'; }else{ $photo_url = ''; $photo = ''; }…with this code…
if(get_field('profile_image')) { $photo_url = get_field('profile_image'); $photo = '<img class="staff-member-photo" src="'.$photo_url.'" alt = "'.$title.'">'; } else { $photo_url = '#'; $photo = '<img class="staff-member-photo" src="'.$photo_url.'" alt = "'.$title.'">'; }This is a bad fix (though it works) because (1) you’re using another plugin to fix this plugin and (2) updating this plugin is now going to null the work you did.
Forum: Reviews
In reply to: [Advanced Custom Fields (ACF®)] The best wordpress plugin ever createdAgreed, Maybe $400mil…
I too am looking for this answer. I am wondering if I need to register these as custom sidebars in my theme functions file.
Forum: Reviews
In reply to: [Theme Test Drive] The URL parameter could be betterIt’s probably a lot better just to give them a user account for viewing the site. You can create a login page that redirects to the homepage and not the backend.