getaka
Forum Replies Created
-
I’ll provide you the temporary admin login
Can you do it yourself ?
Forum: Plugins
In reply to: [Flexi - Guest Submit] Order Flexi Post by flexi_view_countHi,
I know it’s not supported yet, but what if I wanted to achieve this programmatically? How can I run the custom query by meta_key and meta_value?Forum: Plugins
In reply to: [Flexi - Guest Submit] Flexi Submission form not working in Flexi Post TypeHi Odude,
I meant to say, what if I wanted users to submit photos after visiting the detail page. Will it not be a good idea to include submission form to detail page also which will create standalone gallery with like dislike function? This feature may increase the user engagements even further.Thanks. It’s working. The only caveat I am facing is that ?search=keyword:selena also returning posts which doesn’t have the keyword. Here is the shortcode I am using.
<h2>Create your own Jenny Slate photo gallery</h2> [flexi-form title="Submit to Flexi" name="my_form" ajax="true"] <div class="fl-field"><label class="fl-label fl-label fl-has-text-dark" for="user-submitted-title">Name*</label><div class="fl-control"><input type="hidden" name="user-submitted-title" value="Jenny Slate" placeholder="" class="namefield"><input type="text" name="user-submitted-title" value="Jenny Slate" placeholder="" class="namefield" readonly=""></div></div> [flexi-form-tag type="article" title="Description" placeholder="Write few words about the celebrity (optional)"] [flexi-form-tag type="tag" title="Insert tag" value="Jenny Slate"] [flexi-form-tag type="file" title="Select file*" required="true"] [flexi-form-tag type="submit" name="submit" value="Submit Now"] (Note: * required) Do not remove the existing tag Do not upload any gross or explicit photo Do not upload any photo with copy rights Upload photos with maximum size less than 1 MB [/flexi-form] <h2>Jenny Slate - Latest Photo Gallery | User uploaded photos</h2> [flexi-primary ?search=keyword:Jenny Slate]
Here is the page:
https://getaka.co.in/movies/jenny-slate/- This reply was modified 2 years, 7 months ago by getaka.
I want something like this
[flexi-gallery title=”Selena Gomez”], which fetches all the flexi posts whose title is Selena Gomez.
Please quote [email protected]Dear Odude,
Can you do this for me. Of course, I am ready to pay for it.I inserted the shortcode in a WordPress page with the help of Gutenberg shortcode block.
Hi ODude,
I created a new page Named Flexi Login with the short code [flexi-login] in it. When I published the page and viewed in front-end, it broke the page template. Please open the link in your browser.
https://getaka.co.in/flexi-login/- This reply was modified 2 years, 7 months ago by getaka.
Corrected code:
<script>
document.getElementById(‘submit’).onclick = function changeContent() {document.getElementById(“tags_tag”).value = document.getElementByName(“user-submitted-title”).value;
}
</script>Please let me know where to paste this piece of code in flexi file, to fetch the title in tag field on click of submit button.
Forum: Plugins
In reply to: [Flexi - Guest Submit] Get post by TitlegetElementById(“celeb”); celeb is the ID for Title field.
Forum: Plugins
In reply to: [Flexi - Guest Submit] Get post by TitleHi ODude,
I want to copy the input of Title Filed to Tag field automatically on clicking of submit button.
I want to add this code to Flexi Plugin. Please let me know in which flexi file to add this code.<script> document.getElementById('submit').onclick = function changeContent() { document.getElementById("tags_tag").value = document.getElementById("celeb").value; } </script>
Forum: Plugins
In reply to: [WP Fastest Cache] Redirect to previous page after loginHi,
Can I make any logic by which after any form submission, all cache is cleared and the page is reloaded?
PS: I don’t have any coding knowledge.Forum: Plugins
In reply to: [Flexi - Guest Submit] Redirect to previous page after loginWP Fastest Cache was the problem.
Forum: Plugins
In reply to: [Flexi - Guest Submit] Redirect to previous page after loginHi,
commenting out //’redirect’ => flexi_get_button_url(”, false, ‘my_gallery’, ‘flexi_user_dashboard_settings’), is not helping. It is still getting redirected to user-dashboard.
I also have modified the form to include register link also. Please see the complete function.// Displays login link function flexi_login_link() { $output = ''; $style_base_color = flexi_get_option('flexi_style_base_color', 'flexi_app_style_settings', ''); $style_text_color = flexi_get_option('flexi_style_text_color', 'flexi_app_style_settings', ''); $output .= "<div class='flexi_alert-box flexi_notice'>" . __('Login', 'flexi') . '</div>'; $output .= "<div class='fl-box " . esc_attr($style_base_color) . ' ' . esc_attr($style_text_color) . "' style='padding:30px;'>"; $args = array( 'echo' => false, //'redirect' => flexi_get_button_url('', false, 'my_gallery', 'flexi_user_dashboard_settings'), 'form_id' => 'loginform', 'label_username' => __('Username', 'flexi'), 'label_password' => __('Password', 'flexi'), 'label_remember' => __('Remember Me', 'flexi'), 'label_log_in' => __('Login', 'flexi'), 'label_register' => __('Register', 'flexi'), 'id_username' => 'user_login', 'id_password' => 'user_pass', 'id_remember' => 'rememberme', 'id_register' => 'register', 'id_submit' => 'wp-submit', 'remember' => true, 'value_username' => null, 'value_remember' => false, ); if(!is_user_logged_in()) $output .= wp_login_form($args).' '.wp_register('','',false); do_action('flexi_login_form'); $output .= '</div>'; return $output; }