Gaby F.
Forum Replies Created
-
Forum: Plugins
In reply to: [Eventbrite API] Eventbrite API plugin statusIs this why I keep getting an expire link notice when trying to connect with Keyring?
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] CSS Class for rowsIf you write it in the plugin code you would also have it overwritten when you update the plugin.
The best option is to work with a child-theme. Even if is a commercial theme, is quite easy to add a child-theme to avoid your custom code being overwritten:
https://codex.www.ads-software.com/Child_Themes
And also some of the commercial themes may come already with the option to add a child-theme.
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] Nested Post Loop widgetI’m trying to do this also, but I’m getting infinite loops.
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] CSS Class for rowsHi,
I found some filters to add custom styling to rows and cells
function my_panels_row_style( $styles ) { $styles['my-style-panels'] = __( 'My Style Panels', 'mytheme' ); return $styles; } add_filter( 'siteorigin_panels_row_styles', 'my_panels_row_style' ); function my_panels_row_classes( $grid_classes ) { $grid_classes[] = 'my-panel-grid'; return $grid_classes; } add_filter( 'siteorigin_panels_row_classes', 'my_panels_row_classes' ); function my_panels_cell_classes( $cell_classes ) { $cell_classes[] = 'my-panel-grid-cell'; return $cell_classes; } add_filter( 'siteorigin_panels_row_cell_classes', 'my_panels_cell_classes' );
add this in your functions.php and add as many classes as you need.
To override the styles just use something like:
.panel-grid.my-panel-grid {margin: 0;}
on your css files.Forum: Plugins
In reply to: [Advanced Custom Fields: Validated Field] Unique field for a name fieldOk, thank you for your time and help ??
Forum: Plugins
In reply to: [Advanced Custom Fields: Validated Field] Unique field for a name fieldThanks :), the unique fields are working now.
I ran some test, it seems that the fields in front end form get validated even if the “Enable Front-End Validation” box isn’t checked, just saying.
And I’m having some problems with validating emails. I’m using the email field with:
<?php if ( filter_var( $value, FILTER_VALIDATE_EMAIL ) ) : return true; else : return false; ?>
and also
with preg_match(), with this regex
/(^[a-zA-Z_.+-]+)@([a-zA-Z_-]+).([a-zA-Z]{2,4}$)/i
but still i’m being able to pass emails like demo@domain without the .com@doublesharp thanks ??
Forum: Plugins
In reply to: [Bogo] Translating category namesHi, while I do love this plugin. Do you have an estimated date for the category translation update?
Hi, any chances i could get the dev files too? I have the same problem, and I need it for some work with a client. Wouldn’t mind if there’s stuff to change or modify in the files.
Forum: Plugins
In reply to: [qTranslate] qtranslate don't work on WP 3.7Thanks to both responses. But I discovered what was my problem, there’s something wrong with the latest version of the BackWPup plugin.
Forum: Plugins
In reply to: [qTranslate] qtranslate don't work on WP 3.7Hi,
I did the update for WP 3.7.1 and also hacked the qTranslate file supported version to 3.7.1.
The interface looks fine, except that when I edit a post it get’s all crazy. The update button looks inactive, the text gets ereased when I change tabs and when I can click on the update button it doesn’t gets save.
Is it a problem between the text editor, the new WP and qTranslate or just a problem with qTranslate? Do you know when we’ll have an update on the qTranslate plugin?