Forum Replies Created
-
AuthorPosts
-
Anh Tran
KeymasterCan you check these 3 things:
1. Version of the plugin. It should be 1.0.5 to have tabs enabled.
2. Follow the instruction in the documentation. It has some extra params for the tabs.If there's nothing wrong with that, can you please post your code?
Anh Tran
KeymasterThanks @qco for your opinion. Actually I have some extensions in the queue and many to come. I don't think 1 core extension bundle can cover them all as the price will increase a lot. While it might suit you, it might fail for others. In stead of putting all in 1 the current core bundle which is already sold to many users, I'm thinking about:
1. Releasing other bundles as well. This will be done after some extensions are released.
2. Create a membership plan where users can get access to all current and FUTURE bundles.I'm still thinking and haven't made any decision yet. It's more a business aspect than development aspect.
Anh Tran
KeymasterHi, I think it's not possible. Because the purpose of the builder is letting users create meta boxes and fields for themselves. They will not need to translate to another language.
Anh Tran
KeymasterJust saw your email. Do you want to continue discussing here or via email? If nothing private, I think we should talk here.
Anh Tran
KeymasterHi, can you post your code?
Anh Tran
KeymasterProbably something went wrong when updating like missing files or files were broken. Glad that reinstalling fixes the problem ๐
Anh Tran
KeymasterAh, the demo just shows you lots of option that you can adjust for your real project :). Glad that it works for you now.
Anh Tran
KeymasterThe thing here is the values return from the function
get_term_metais an array of images' IDs. It doesn't return the full info of images like inrwmb_meta. To get full image info, you can use this code:foreach ( $images as $image ) { $image = RWMB_Image_Field::file_info( $image, 'thumbnail' ); echo "<a href='{$image['full_url']}' rel='lightbox'><img src='{$image['url']}' width='{$image['width']}' height='{$image['height']}' alt='{$image['alt']}' /></a>"; }Anh Tran
KeymasterHi, sorry for taking long to reply :(.
Your code is almost correct. It's just not
$cat->$term_id, but$cat->term_id. So the code inside the loop should be:$images = get_term_meta( $cat->term_id, 'image_advanced', false ); var_dump( $images ); // Array of image IDs $color = get_term_meta( $cat->term_id, 'color', true ); var_dump( $color ); // ColorAnh Tran
KeymasterAh, you set
'teeny' => truewhich shows the minimal UI for the editor. Removing it resolves this problem.Anh Tran
KeymasterHi guys, could you please post me the code so I can check it specifically?
Anh Tran
KeymasterBy default, the wysiwyg has everything the default editor has. You need to click to the "Toolbar Toggle" button to show the format selection dropdown, like this:
April 6, 2016 at 1:41 PM in reply to: Some users still getting Fatal error: Class 'RWMB_Core' not found #2676Anh Tran
KeymasterCan you just try including the plugin's file directly without putting it inside the 'init' hook?
Anh Tran
KeymasterI don't think so :(. You purchased the bundle on Sep 30 last year. Since then, 3 premium extensions were added to the bundle (Settings Page, Term Meta and Admin Columns). The price at that time was $79 only.
Anh Tran
KeymasterI've just tested again and it works. A stupid question, but can you post your code again?
-
AuthorPosts