Derda
Forum Replies Created
-
Forum: Networking WordPress
In reply to: No login after change from subdomain to subfolderI solved it with the help of google gemini. the debug log showed a possible issue with a plugin. turning it off solved the issue.
Forum: Plugins
In reply to: [Post Type Switcher] [Featured request] Keep a copy of the original post typeGeorge’s suggestion is cool. Found your plugin because I should move from one CPT to another. But can’t risk losing anything in a slightly complicated build.
Forum: Developing with WordPress
In reply to: Run script on record save/updateThank you very much for the reference.
Forum: Plugins
In reply to: [Code Snippets] Code snippet not working when filtering for a CPTSolved. Was a code error.
Forum: Plugins
In reply to: [Code Snippets] Code snippet not working when filtering for a CPTIs anywhere around who can help on this? Much appreciated. Thanks
Forum: Plugins
In reply to: [Code Snippets] Snippets not workingWith all your kind help I still can not get this snippet to work. It should display an alert when i am in edit mode in a CPT called “city” – Does someone have an idea where i made a mistake? – Thank you very much from this newbie.
// Get the current CPT.
$current_post_type = get_post_type();
// Check if the current CPT is the “city” post type.
if ( $current_post_type == ‘city’ ) {
// Add the code to theadd_action
action.
add_action( ‘edit_post’, function() {
// Display a custom alert.
echo ‘<script type=”text/javascript”>’;
echo ‘alert(“JS alert box inside PHP”)’;
echo ‘</script>’;
} );
}Forum: Plugins
In reply to: [Code Snippets] Snippets not workingThank you very much for your kind help!
Forum: Plugins
In reply to: [Code Snippets] Snippets not workingOhh, thanks for advising me. In the sample snippets provided I did not see that. Where can i learn which action or filter hook I need to supply and how this works?
Forum: Plugins
In reply to: [Shariff Wrapper] Replace Twitter with XI think X has not published their official branding guidelines yet. We may have to be a bit more patient.
Forum: Plugins
In reply to: [Booster Extension] Remove Average rating and Reactions toggleSelect the right class and in css give it a display:none
Forum: Fixing WordPress
In reply to: wp 6.1.1 “more” block invisibleGeorge, we solved it by buying a better theme. thanks
Forum: Fixing WordPress
In reply to: wp 6.1.1 “more” block invisibleWP Masonry Pro
Forum: Fixing WordPress
In reply to: wp 6.1.1 “more” block invisibleOops, while this works nice with twentytwenty-three … what do I do when the Appearance -> Editor does not show up on a theme? Add a snippet to functions.php?
- This reply was modified 2 years, 1 month ago by Derda.
Forum: Fixing WordPress
In reply to: wp 6.1.1 “more” block invisibleWonderful! Thank you very much indeed!
Forum: Fixing WordPress
In reply to: Place WP inside existing php pageThanks a lot bcworkz, works perfectly putting wp into an iframe – also on mobile. width set to 100%, border=none and height at a random 800px.
Cheers