adispiac
Forum Replies Created
-
You’ll probably need to create a custom loop in your home page template.
Have a look into codex Custom Post Types in the Main Query.
Forum: Plugins
In reply to: [Custom Post Types and Custom Fields creator - WCK] Alignment buttonsTo enable the alignments buttons you need the CKEditor – Justify plugin, please download it here and add it to our CKeditor in \wp-content\plugins\wck-custom-fields-and-custom-post-types-creator\wordpress-creation-kit-api\assets\js\ckeditor\plugins.
Then, to enable the alignment buttons add this code in your theme functions.php file or an empty plugin like this one.
// Add extra config elements for CKEditor ; wysiwyg add_action('wp_head', 'wck_custom_ckeditor_settings'); add_action('admin_head', 'wck_custom_ckeditor_settings'); function wck_custom_ckeditor_settings(){ ?> <script type="text/javascript"> jQuery( function(){ if ( typeof (CKEDITOR ) != "undefined" ) { CKEDITOR.config.extraPlugins = 'justify'; } }); </script> <?php }We’ll also make sure to include the Justify plugin for CKEditor in our next plugin release.
Forum: Plugins
In reply to: [Custom Post Types and Custom Fields creator - WCK] Repeater won't saveHello,
I’ve just testd this scenario and it seems to work fine. It sounds like a JS error. Could you have a look in your console if this is the case and send the error over?
Also, I’m not able to see your screenshot. Can you attach it again?Hi,
What exactly are you looking to achieve and how to you plan to use the two plugins together?
I’m not familiar with any conflicts between the two, also because they do pretty distinct things.
But since I’m not familiar with the job managers plugin, it would help if you describe in more detail the scenario you want to achieve so I can help you further.Ok, I see what you mean.
The theme you’re using is causing this behavior. Here’s why:
– on the form pages on mobile after page loading is complete, there’s new styling applied: jquery.mobile.structure-1.3.1.min.css
– using jquery they add divs with certain classes (ui-imput-text, ui-shadow-insert, ui-corner-all, ui-btn-shadow, ui-body-c) and wrap all inputs into them.This doesn’t quite make sense, and removing this div classes will make our forms display properly.
I suggest you get in touch with the ClassifiedEngine theme support and ask them for a fix.
Hope this helps
Hi David,
I’ve already answered this via our support channel, this forum being dedicated to the free version only.
The answer is yes, we have a filter in place which can be used to add this extra validation step.Yup, that makes total sense. Changed and will be out in the next release.
Thank you.Is this issue still persisting?
I’ve looked at your website and the login form fields seem to be displaying just fine. (Looked in Firefox, Chrome and Safari)
Hi,
This is probably caused by the theme you’re using.Could you give me a link to your site to look into it? It should be something CSS related to the active theme.
Hi,
1) Profile Builder can take care of the front-end registration part, but you’ll need to use a content restriction plugin like Members in conjuction with PB.
2) Yes, PB can help you with that. Just create two pages and add the following shortcodes: [wppb-login] and [wppb-register].
3) That’s up to the users. They can choose to let the browser remember it. Also Profile Builder adds a remember me checkbox below the login form.
4) You can see a list of all your users under the Users tab in wp admin interface.Hope this points you in the right direction.
Hi,
The option in the main WordPress menu to add a shortcode is added by this plugin. This is not WordPress default functionality.I’m not quite sure how the above plugin works, but your issue is probably related to how it handles our shortcode.
Unfortunately at this time, there’s no easy solution to add a menu switcher in Profile Builder because of the complexity it involves (creating new pages, redirects based on user login status, showing different menu items based on logged in status etc.).
We’re looking into coming up with a proper solution soon, because it’s something other users have requested as well. We don’t quite agree with some of the existing solutions out there, and therefor need to do a little bit of research on how to proper tackle this feature.
Hi Paolo,
I thought I should mention that we’ve setup a new environment for making it really easy to translate Profile Builder, without using Poedit, as well as downloading the translation files.
For getting the Italian translation, go to:
http://translate.cozmoslabs.com/projects/profilebuilder/it/italianThen on the page bottom click Export and select the .po and then the .mo files.
You need to rename them: profilebuilder-it_IT.mo and profilebuilder-it_IT.po and place them in the Translation directory in the plugin.Then in the WP back-end UI, under Settings go to Site Language and select Italian. This way all your Profile Builder strings will be in Italian.
Hope this helps.
By default you can’t keep the modal open because the form generated by the shortcode has a redirect after submission (either to the same page, or a different one).
However I think you can custom code it, have a look.
I think the quotes should be the other way around:
<?= do_shortcode( '[wppb-register redirect_url="www.yoursite.com"]' ); ?>Also make sure to redirect to an existing page on your site. The redirect won’t work if it to an outside url.
If you’re using the [wppb-login] shortcode in a page, after a user fills the login form and loggs in, it will display a text with a logout link like:
You are currently logged in as userxyz. Log out »Besides this there’s also a logout shortcode you can use.