194 comments found.
Hi,
With Profile Option Framework – I am able to create a fields for users dashboard page.
I have created upload field for all users.
Is there way to show only items uploaded by a users in media library now it is showing all media items, when i click the upload filed.
I have tried to create account in your external support system.But it is saying “Wrong Purchase Code”.
Hi,
Welcome to club and thanks for purchasing.
Hmm, Yes. It can be possible with a minor touch. Let’s go support forum.
I can help you for register if you leave an email via routewp[at]gmail[dot]com
Regards, Codestar
Can I make gutenberg blocks with CF?
I don’t wanna use another framework (acf or carbon field) for creating gutenberg block.
Thanks
Hi,
Just you can create shortcode gutenberg block for now. Maybe it can be possible in the future.
Regards, Codestar
Hi, What is Gutenberg Ready ? is possible to make Gutenberg block ?
Hi,
Not yet, It can be in the future.
Regards, Codestar
Hello everybody! Do You Need Support ?
Best way is support forum for quick support. You can join support forum with the purchase code or contact me via codecanyon pm. Please attach screenshots about your requests on email or support forum message. It’s important for quick support!
Visit Support Forum | Create an Account
Please feel free to contact us at anytime.
Thanks for interest.
Best Regards,
Codestar
Hi.I checked the documentation. You have not given an explanation about the use of select in the frontend! How can I use the select condition?
For other options, you can simply use:
if ($options[‘my-setting-name’] ) {
}
in setting:
array( ‘id’ => ‘my-setting-name’, ‘type’ => ‘select’, ‘options’ => array( ‘opt-1’ => ‘Option 1’, ‘opt-2’ => ‘Option 2’, ‘opt-3’ => ‘Option 3’, ‘default’ => ‘opt-1’ ),
Is it possible to define conditions for an optin? I want to say if it was option 1.
I didn’t find any guide on github either 
Hi,
Yes right, because it’s your knowledge of php/wordpress. If you need deeply help please purchase item and come to support forum.
Regards, Codestar
do you have any frontend display documentation ?
Hi,
There is no document for frontend because it’s your skills. But if you wonder any field output, start a new topic from in support forum I can help you.
Regards, Codestar
Hi, In WordPress updated version codestar widget does not working. See the image below. What is the solution
Hi,
Thanks for purchasing.
Uh, I can’t see any image. Please can you come to our support forum and open a topic about this? we can find quick solution via support forum.
Regards, Codestar
I’ve posted a topic on your support forum. Not receiving any reply from you for 3 days. It’s frustrating
Hi,
Sorry for delay, I was busy nowadays. I did back to office. Let’s go support forum.
Regards, Codestar
Hi,
The select chosen with ajax not working with a custom category. When I type something for example “Lifestyle” I get [Object HTMLLIElement] in select option, but when using Inspect élément the result of ajax is correct, this is what I got:
{"success":true,"data":[{"value":170,"text":"Lifestyle"}]}
Please help.
Thanks.
Hi,
Let’s check it detailed. Please open a ticket in support forum. No worry about support expired. Still you can open ticket.
Regards, Codestar
I can’t, I receive Wrong Purchase code in your forum
Hi,
You can leave an email via routewp[at]gmail[dot]com I can help you for register it.
Regards, Codestar
Hi. Can $options be globalized? i did not find anything in the documentation.
Hi,
Yes can be.
- If you plan to use it backend and frontend both. Set it like this (functions.php):
global $masodmasod; $masodmasod = get_option( 'UNIQUE_ID_OF_FRAMEWORK' );
- or only frontend use:
function masodmasod_set_global_variable() {
global $masodmasod;
$masodmasod = get_option( 'UNIQUE_ID_OF_FRAMEWORK' );
}
add_action( 'after_setup_theme', 'masodmasod_set_global_variable' );
You can come support forum for more details.
Regards, Codestar
Thank you. I get this err message in the free version:
Trying to access array offset on value of type bool.
my code:
if ($options[‘per-name-optins’]){
// code-function // }
Is it enough to globalize once?
Hi,
Try to like this:
if ( isset( $options['per-name-optins'] ) ) {
// do stuff...
}
Regards, Codestar
I used this method. But this method automatically activates all the options and even if I disable the options through the settings, they remain active.
Hi,
If so, you can use like this:
if ( ! empty( $options['option_name'] ) ) {
// do stuff...
}
// or
if ( isset( $options['option_name'] ) && $options['option_name'] !== '' ) {
// do stuff...
}
Regards, Codestar
thank you very much. It worked with: !empty . tnx.
You’re welcome 
Is there any option for enabling the copy feature for the input field? I made existing shortcode fields in my theme settings https://prnt.sc/ysDzbDbgUxEQ . It would be helpful for users if they can copy the shortcode with one click.
Thanks
Hi,
There is no option for this for now. But I noted this for next updates. It’s good idea. Btw, join the support forum for quick support.
Regards, Codestar
Feature Request: Output variables parameter needed for the color field to dynamically change the color in CSS file.
You can see the Redux framework’s color field. They already have this feature for their color field .
Thanks
Hi,
Hmm, I noted this for next updates. Actually, you can use this feature like this:
Params:'output' => ':root', 'output_mode' => '--your-variable-name',Result:
:root{
--your-variable-name: #112233;
}
Thanks for purchasing
Regards, Codestar
Thank you
You’re welcome 
Is that possible to create a Guttenberg block using Codestar Framework Latest Version?
Thank You
Hi,
No, only shortcode framework works with Gutenberg. But I am planning this feature in the future 
Regards, Codestar
Hello everybody! Do You Need Support ?
Best way is support forum for quick support. You can join support forum with the purchase code or contact me via codecanyon pm. Please attach screenshots about your requests on email or support forum message. It’s important for quick support!
Visit Support Forum | Create an Account
Please feel free to contact us at anytime.
Thanks for interest.
Best Regards,
Codestar
Does Codestar support WPML? if not please any other translation plugin.
*Please suggest any other translation plugin.
Hi,
Yes of course, it’s support WPML. Also you can use free translation plugin Polylang. Only you should follow the wpml-config.xml configuration for admin options.
Btw, your support expired is not important, still you can open support forum topic. Our support service is flexible.
Regards, Codestar
Thank you so much! Thanks for such a great product and terrific support. You guys are AWSOME!
You’re welcome, and thanks for nice words. I get happy 
Does codestar have required field feature for meta fields?
Hi,
Yes you can use validate/sanitize feature for meta fields.
Regards, Codestar
Thank you for your product. I have one simple question. Your documentation doesn’t show any kind of esc_html, or translatable text notation for field titles, or other static strings.
Are those all escaped before rendering to the front end? Or do we have to do that by ourselves.
Thanks.
Hi,
The data sanitization/escaping are a part of front-end. ( Data Sanitization/Escaping )
About translation, you should use wpml-config.xml there is a detailed documentation
For more questions, come to support forum 
Regards, Codestar
I’ll buy new version, Please this time help me to fix this issue. My theme is pending to approved. I got this PHP Notice warning on your Version 1. I don’t have enough time to upgrade version 2. I’ll update version after approved.
PHP Notice: https://ibb.co/df2VvPH
Hi,
Thanks for chose my framework. You can try to update line 70 like this:
// from $cs_errors = $transient['errors']; //to $cs_errors = ( ! empty( $transient['errors'] ) ) ? $transient['errors'] : array();
Regards, Codestar
What an amazing Support. I can’t believe it from my eyes. Thank you very very much.
Best Regards, SiteBland.
You’re always welcome 
Do you have any plan to give support gutenberg block development in Codestar Framework ?
Hi,
Thanks for purchasing.
Yes I am planning. Gutenberg becoming popular. I need free-time for work deeply on that. I will try to add that in the next updates.
Regards, Codestar
Hello , I created a wp theme using codestart for theme options, this theme have light and dark vesion, so my probleme is how to import dark options when i choose to import dark vesion using import one click demo plugin. i user free vesion of codestar framework. please help me!
Hi,
Thanks for use my framework. Uh I haven’t any idea really. It’s a importer part thing. Maybe you should provide light.json dark.json files. Actually it’s a detailed question.
Regards, Codestar
Yes , that it’s what i did , I created dark .json and light.json files, and also I found that you published the code to import .json files on your github account. Now it’s working fine.
Nice 