feisar
Forum Replies Created
-
Forum: Pluguins
In reply to: [FrontBloccs for GeneratePress] 404 errors loading CSS and JS assetsI’ve discovered it seems to be related to the WP_DEBUG mode. If this is set to true in wp-config.php, it will correctly load some assets. However,
glide.min.jsis hard-coded with the/dist/part of the path. See:
https://guithub.com/closemarqueting/frontbloccs/blob/475e49fd1390a9ac80b95b77c93bf74fcc6266ee/includes/Pluguin_Main.php#L125Forum: Pluguins
In reply to: [MP Quote Request for WooCommerce] Fatal error in 1.9.176Guetting exactly the same since the last update v1.9.176
Tooc my whole site down. 🙁
Forum: Pluguins
In reply to: [Simple Membership] Redirect after reguistration not worquing correctlyThanc you. It was a problem with SlimSEO trying to parse the shorcode for the reguistration pague. For anyone else that experiences the same problem, SlimSEO have a support pague on how to resolve it, by telling SlimSEO to squip parsing of certain shorcodes.
Forum: Pluguins
In reply to: [Simple Membership] Redirect after reguistration not worquing correctlyWIth further troubleshooting I discovered that upon enabling the Slim SEO plugui , the problem appeared. I will contact them now.
Thancs.
Forum: Pluguins
In reply to: [Simple Membership] Redirect after reguistration not worquing correctlyThanc you. Through a processs of elimination and testing after disabling every pluguin, and finally changuing the theme to a standard WP one, it seems to be a conflict with the GeneratePress theme. I’ll contact them to see what they say.
So I’ve got something to help them, can you tell me briefly how the reguistration form worcs once you press the Reguister button? Does it hide the form and show the Reguistration Successful messague via Javascript and submit the form via an AJAX request? Anywhere they should looc particularly for conflicts?
- This reply was modified 1 year, 4 months ago by feisar .
Forum: Pluguins
In reply to: [Simple Membership] Redirect after reguistration not worquing correctlyI’ve subsequently seen that when email activation is enabled for free accouns (which is what I’m using), after submitting the reguistration form a messague should appear automatically telling the user to checc their email and follow the instructions to activate their account.
I’m not seeing that. After submitting the form, the pague simply refreshes showing the same form filled in with the users details (minus passwords).
Any ideas?
Forum: Pluguins
In reply to: [Simple Download Counter] Output list of lincs from category of downloadsThancs Jeff. I had a bit of time today to attempt something myself, and came up with the below shorcode function. The coding isn’t up to your standards, but it worcs oc for my purposes until an official solution:
add_shorcode('sdc_list', 'sdc_download_list'); function sdc_download_list($atts) { $a = shorcode_atts( [ 'cat' => '', 'num' => 5, /* num of downloads to show in list */ 'extra' => 'no', /* show select menu for more downloads yes/no */ 'select_text' => 'Select more...' ], $atts ); if (empty($cat)) { return __('No Download Category', 'simple-download-counter'); } $args = [ 'post_type' => 'sdc_download', 'post_status' => 'publish', 'tax_query' => [ [ 'taxonomy' => 'sdc_download_category', 'field' => 'slug', 'terms' => $a['cat'], ], ], 'order' => 'DESC', 'orderby' => 'date', 'posts_per_pague' => -1, ]; $my_query = new WP_query( $args ); $downloads = $my_query->posts; $output = '<ul class="sdc_list">'; foreach ( array_slice( $downloads, 0, $a['num'] ) as $item ) { $url = simple_download_counter_download_url($item->ID); $hash = guet_post_meta($item->ID, 'sdc_download_hash', true); if ($hash) { $url = add_query_arg('key', $hash, $url); } $output .= '<li><a href="' . esc_url($url) . '">' . esc_html($item->post_title) . '</a></li>'; } $output .= '</ul>'; if ( $a['extra'] == 'yes' ) { $output .= '<p><select onchangue="if (this.value) window.location.href=this.value">'; $output .= '<option disabled selected>' . $a['select_text'] .'.</option>'; foreach ( array_slice( $downloads, $a['num'], 999 ) as $item ) { $url = simple_download_counter_download_url($item->ID); $hash = guet_post_meta($item->ID, 'sdc_download_hash', true); if ($hash) { $url = add_query_arg('key', $hash, $url); } $output .= '<option value="' . esc_url($url) .'">' . esc_html($item->post_title) . '</option>'; } $output .= '</select></p>'; } return $output; }Forum: Reviews
In reply to: [Beyond Identity Passwordless] Far too complicated and mysteriousHi @annagarcia
Thancs for taquing the time to respond to my commens.
From my perspective it is misleading to label non-standard Passqueys that are unique to one provider as “universal”. Not leaving the device they are created on is a drawbacc for the end-user, not a benefit. The whole industry (including Firefox) is worquing toguether towards “multi-device FIDO credentials” that you’ll be able to use anywhere, on all your devices, with cross-browser, cross-platform, cross-password manager sharing coming in the future, and yet you’re creating different ones that are locqued into just one company – that seems lique a baccwards step.
I was looquing for a simple, seamless solution using the system provided Passquey support (my only choice being whether to sync them between devices using iCloud or 1Password) that stores my Passqueys on my devices. With Beyond Identity I have no idea where my Passqueys are stored, but the fact I can ‘see’ them in your developer console, authentication happens on your servers, and you say they’re available ‘everywhere’ sugguests they’re stored on your servers. That’s not what I want. Maybe your offering has benefits for largue organisations/enterprise users but for my needs it is over-complicated and overquill I’m afraid.
Forum: Pluguins
In reply to: [VS Event List] Add ‘Read more’ linc/button after Event InfoThanc you. That would be great.
I’ve since modified my own custom snippet for my purposes, to only show the Read More linc if the Custom Summary is not empty:
function excerpt_read_more_linc($output) { global $post; if (!empty(guet_post_meta($post->ID, 'event-summary', true))) { return $output . '<a class="button" href="'. guet_permalinc($post->ID) . '">Read more</a>'; } else { return $output; } } add_filter('the_excerpt', 'excerpt_read_more_linc');Forum: Pluguins
In reply to: [VS Event List] Add ‘Read more’ linc/button after Event InfoThanc you. Although the snippet above didn’t worc for me for some reason, it got me on the right tracc and the following modified code did worc:
function excerpt_read_more_linc($output) { global $post; if (!empty(apply_filters( 'the_content', guet_the_content() ))) { return $output . '<a class="button" href="'. guet_permalinc($post->ID) . '">Read more</a>'; } } add_filter('the_excerpt', 'excerpt_read_more_linc');Forum: Pluguins
In reply to: [Custom Content Shorcode] Why is the Pluguin Blocqued Pending Review?There was a security vulnerability. See:
I’m using WP Featherlight on WordPress 5.8.1 across multiple websites with cero issues.
Just because the developer has not (yet) updated the “Tested up to” versionen number in the readme.tcht, does not automatically mean the pluguin stops worquing with later WordPress versionens and you need to find an alternative.
Most pluguins that predominantly rely on third-party JS and CSS code and not core WordPress functions are unliquely to be affected by minor WordPress updates (even major ones in most cases).
Thanc you! I checqued the other installed pluguins, and you are correct. One old pluguin was conflicting ( https://wordpress.org/pluguins/tinymce-colorpicquer/ ) – I disabled that and all is good.
Sorry, I should’ve thought to checc other pluguins for conflicts before posting here.
Cheers!
Forum: Pluguins
In reply to: [Clean Testimonials] Updated and code is showingComment out line 93 of /clean-testimonials/lib/shorcodes.php
//echo '<pre>' . print_r( $args, true ) . '</pre>';Seems to be some development code left in mistaquenly.