leanderlindahl
Forum Replies Created
-
Forum: Plugins
In reply to: [Social Author Box] About the Author titleHello @jvuong. Currently there is no special field for a title, but that’s a great idea and something that I’ll consider adding as an option in a future update.
However you can bake the title into the author bio text, that is how the plugin was originally meant to be used. More like a descriptive text along the lines of:
“John Smith is a distinguished scholar of medieval art and has a Masters Degree from the Royal College of Medieval Art in Durban. In his free time he loves to throw frisbee and spend time with his dog Zelda.”Forum: Plugins
In reply to: [Simple Payson Payment] Woocommerce SupportHello Rohit,
no I don’t think it will work for WooCommerce. It was intended as a simple way to accept donations or membership fees for non-profits.
Yes, I’ve got something rather similar. Is there any way to solve the problem? (Disqus Commenting System 2.84). Previous to upgrade it worked.
WordPress database error: [Specified key was too long; max key length is 1000 bytes] CREATE INDEX disqus_dupecheck ON <code>wp_commentmeta</code> (meta_key, meta_value(11));
Hello jumbo, I’m not sure whats going on there. I too get this error. I found that altering the referenced row (wp-simple-301-redirects.php line 271) to this shuts up the error notice:
return $this->get_protocol().’://’.get_bloginfo(‘wpurl’).$_SERVER[‘REQUEST_URI’];
What this does is switching from $_SERVER[‘HTTP_HOST’] to get_bloginfo(‘wpurl’) to let the plugin find out the url of the site (i. e. https://www.myblog.com).
Forum: Plugins
In reply to: [Bogo] Bogo on NginxMarking this as resolved.
Forum: Plugins
In reply to: [Bogo] Bogo on NginxOk, so I think I found the solution here:
https://wpml.org/forums/topic/how-do-i-get-language-directories-to-work-with-nginx/#124002location / { index index.php; try_files $uri $uri/ /index.php; } should have been location / { index index.php; try_files $uri $uri/ /index.php$is_args$args; }
Forum: Plugins
In reply to: [AutoChimp] Add WordPress User Fields (Mailing Lists Page, Step #3)autochimp.php
I ran across the same problem. You can manually add your fields to autochimp. However this means you cannot update the plugin in future without making the corresponding adjustments “by hand”.
Version: 2.15
row 113$wpUserDataArray = array( 'Username', 'Nickname', 'Website', 'Bio' , 'My Custom Field', /*'AIM', 'Yahoo IM', 'Jabber-Google Chat'*/ );
row 1021
elseif ( 0 === strcmp( $field, 'My custom field ) ) { $value = get_the_author_meta('my_custom_field', $user_info->ID); $dataArray[] = array( 'name' => $optionName, 'tag' => $fieldData, 'value' => $value ); }
I’m not able to pass final judgement as I am just beginning to try the plugin out. My first action is to make it translatable and I can confirm that is is even though your review at first disheartened me.
If one is using PoEdit one can open the ‘event-espresso-free/languages/event_espresso.pot’ file with PoEdit and them save it as event_espresso_sv_SE.po (for Swedish in this example) and start translating.