Babak Fakhamzadeh
Forum Replies Created
-
Forum: Plugins
In reply to: [Name Directory] Shortcode for showing a random name?Thanks!
It’s a WordPress bug. My name also doesn’t show in the top right of this site when logged in. Even though my profile has the correct info.
Forum: Plugins
In reply to: [Name Directory] Shortcode for showing a random name?Cool!
Forum: Plugins
In reply to: [Name Directory] Shortcode for showing a random name?I see you pushed out a new release. I think I’m not the only one contributing to this release, right?
You might want to consider adding the contributors to the list of “Contributors & Developers” at the bottom of the main plugin page.
Forum: Plugins
In reply to: [Name Directory] Shortcode for showing a random name?You’re welcome 🙂
Forum: Plugins
In reply to: [Name Directory] Shortcode for showing a random name?Understood.
On your next update, consider adding the following function to shortcode.php. It adds a shortcode to display a random name.
Use like this: [namedirectory_random dir=”2″]
function name_directory_show_random($attributes) { $dir = null; extract(shortcode_atts( array('dir' => '1'), $attributes )); $name_filter = array(); $directory = name_directory_get_directory_properties($dir); $names = name_directory_get_directory_names($directory, $name_filter); $num_names = count($names); if ($num_names > 0) { $entry = $names[array_rand($names)]; ob_start(); echo '<div class="name_directory_random_name">'; echo '<div class="name_directory_name_box">'; echo '<a name="namedirectory_' . sanitize_html_class($entry['name']) . '"></a>'; echo '<strong>' . htmlspecialchars($entry['name']) . '</strong>'; if(! empty($directory['show_description']) && ! empty($entry['description'])) { $print_description = html_entity_decode(stripslashes($entry['description'])); /* This toggles the read more/less indicators, these need extra html */ if(! empty($directory['nr_words_description'])) { $num_words = intval($directory['nr_words_description']); $short_desc = name_directory_get_words($print_description, $num_words); $print_description = str_replace($short_desc, "", $print_description); if(! empty($print_description)) { echo '<br /><div> <input type="checkbox" class="name-directory-readmore-state" id="name-' . htmlspecialchars($entry['id']) . '" /> <span class="name-directory-readmore-wrap">' . $short_desc . ' <span class="name-directory-readmore-target">' . $print_description .'</span></span> <label for="name-' . htmlspecialchars($entry['id']) . '" class="name-directory-readmore-trigger"></label> </div>'; } else { echo '<br /><div>' . $short_desc . '</div>'; } } else { echo '<br /><div>' . $print_description . '</div>'; } } if(! empty($directory['show_submitter_name']) && ! empty($entry['submitted_by'])) { echo "<small>" . __('Submitted by:', 'name-directory') . " " . $entry['submitted_by'] . "</small>"; } echo '</div>'; echo '</div>'; return ob_get_clean(); } } add_shortcode('namedirectory_random', 'name_directory_show_random');I noticed in another thread you just became a parent. Happy parenting! 🙂
Forum: Plugins
In reply to: [Gutenberg] Gutenberg not savingThanks for spotting, @ambroz.
Indeed, having WordPress in an alternative location from the site URL breaks Gutenberg.
The posted fix on the link you include did not work for me.
Forum: Plugins
In reply to: [Gutenberg] Gutenberg not savingHasn’t been resolved on my end either.
I now get to see plenty of errors in the console. Like so:
[Error] Failed to load resource: the server responded with a status of 403 () (autosaves, line 0)
This, for:
https://mysite.com/wp-json/wp/v2/posts/19890/autosaves?_locale=userI’d say .htaccess is not properly redirecting requests to my /wordpress folder.
Forum: Plugins
In reply to: [Gutenberg] Gutenberg not savingI just got around to using the Health Check plugin. Disabling all plugins, then reenabling only Gutenberg resulted in exactly the same; editing a page with Gutenberg and saving the draft resulted in both a red banner saying ‘Updating failed’ and the status indicator stating ‘Saved’.
Forum: Plugins
In reply to: [Gutenberg] Gutenberg not savingI’ll see what troubleshooting brings me and let you know.
No, the content is not saved. I get a ‘saved draft’, or something like that, in my list of pages as a result.
Forum: Plugins
In reply to: [Gutenberg] Gutenberg not savingI’ve installed the ‘health check & troubleshooting’ plugin, but I’m not at all clear how this could be helpful.
I cleaned my .htaccess file of non-wp stuff (that is, old commented out lines). After this, Gutenberg both responded with ‘saved’ when pressing the ‘save draft’ button and ‘Updating failed’ (in red, underneath the header).
Ii also started with an empty .htaccess file, letting WordPress and WP Fastest Cache fill the .htaccess file as they saw fit, but this resulted in the same situation: ‘saved’ and ‘updating failed’.
Forum: Plugins
In reply to: [Gutenberg] Gutenberg not savingI have a caching plugin (WpFastestCache) that rewrites my .htaccess. It also has some leftover (but commented out) rules.
Wordpress address:
https://mysite.com/wordpressSite address:
https://mysite.comForum: Plugins
In reply to: [Gutenberg] Gutenberg not savingPressing save (twice) resulted in .htaccess in the root of my site being updated. But, this in turn resulted in server errors, as WordPress added redirect rules at the end of the .htaccess file, though a caching plugin puts a lot of ‘stuff’ at the start of .htaccess, the two apparently conflicting with each other.
So, to get my site to work, I had to remove the (standard) WordPress additions at the end of the .htaccess file in the root of my site.
After this, Gutenberg still fails in the same way, when trying to save a post.
I’m indeed on 3.9.0.
Forum: Plugins
In reply to: [Co-Authors Plus] Some author pages empty for some logged in usersHaving the same issue.
Thanks for the response.
Yeah, that’s indeed what I ended up doing 🙂
Forum: Plugins
In reply to: [Contact Form 7] CF7 fails silentlyThanks. Turned out the server was misconfigured.