Mikkel Rommelhoff
Forum Replies Created
-
Forum: Plugins
In reply to: [Image Widget Deluxe] Feature requestsHi Tina
Thats alright. Glad you turned back and wasen’t scared away.
I have added two new features:
– Option to add one or more css classes.
– Option to only display the “Widget title” if you want to via checkbox.Note:
Other fields needs to be left empty.Forum: Plugins
In reply to: [Image Widget Deluxe] Can't edit text in FirefoxI just noticed that in WordPress 4.6 they are going to fix 3 firefox issues. Before digging to deep in this ill await a few weeks for their release.
Hope thats alright with you.Forum: Plugins
In reply to: [Image Widget Deluxe] Can't edit text in FirefoxThanks. Never tested this browser. I’ll have a look before any larger release.
Forum: Plugins
In reply to: [Image Widget Deluxe] Text Color on Image Widget DeluxeHi there.
There is no stylesheet for the front-end so all colours come from your theme.
You can style by adding classes to your theme or child-themeForum: Plugins
In reply to: [Image Widget Deluxe] Text Color on Image Widget DeluxeHi there.
There is no stylesheet for the front-end so all colours come from your theme.
You can style by adding classes to your theme or child-themeForum: Plugins
In reply to: [Image Widget Deluxe] Create Rows of ImagesOk. I’m glad you got the job done.
Forum: Plugins
In reply to: [Image Widget Deluxe] Create Rows of ImagesHi Chasatx
Can you send me a link to the page? Would like to see what you want to achieve.
This plugin could be used with a site builder tool which would then take care of all the grid for you.Forum: Plugins
In reply to: [Image Widget Deluxe] Feature requestsHi Tina
Was hoping to hear back from you about your issue/request.Forum: Plugins
In reply to: [Image Widget Deluxe] Draw Attention plugin in widget Image widget DeluxeHello Rstrozms,
My first thought would be that to create highlights/links inside an image you need to make sure that you haven’t wrapped the entire image it self in a link.Try again without setting a link/url on the image widget deluxe and let me know if that made a difference.
Forum: Plugins
In reply to: [Image Widget Deluxe] Feature requestsHi Tina,
Thanks for the feedback. It’s really great to get more eyes looking at the usage and I am prepared to add additional functionality if it enhances the experience.
Before I do that, i just to be sure I understand what you would like to achieve :).1. Option to give the widget a specific class so you can style it without knowing CSS.
If people enter a class wouldn’t they then have to know how to target the specific class via CSS? Just afraid that adding an extra class to the widget is not solving that particular issue that you describe. What are the actual issue you had on your particular site?So knowing a little CSS you could do something like:
.sidebar .widget_rommeled_image { background: green; }
The sidebar selector needs to match the one in your theme.Do you need help with CSS or?
2. Option to hide the title.
– Have you noticed that if you do not enter a title – none is displayed?Again many thanks for your feedback – looking forward to hear from you.
Same issue here.
Payment is accepted and order is placed but following error message appears “SyntaxError: Unexpected token S”.Also the page does not redirect to order completion page.
Forum: Plugins
In reply to: [User Activation Email] Column active filter not workingOne of our team members solved this by changing the following code in the plugin.
Line 362
function sortable_active_query( $query )
{
if( !is_admin() )
return;global $wpdb;
if( ‘active’ == $query->query_vars[‘orderby’] )
{
$query->query_from = $query->query_from .”,”. $wpdb->usermeta;
$query->query_where = str_replace( ‘WHERE 1=1’, ” WHERE ( $wpdb->usermeta.meta_key = ‘uae_user_activation_code’ AND $wpdb->usermeta.user_id = $wpdb->users.ID ) “, $query->query_where );
$query->query_orderby = str_replace( ‘user_login’, “meta_value”, $query->query_orderby );
}
}