Edward Caissie
Forum Replies Created
-
Thanks! I’ll take a look at this later… once I sort out some unrelated issues with the instance 🙁
Forum: Fixing WordPress
In reply to: select multilanguage sites through buttons?@martin177 – Your best bet would be to ping the multi-language plugin’s author that you would like to use and ask them if their plugin can be integrated into a site the way you are describing. I’ve seen what you are asking about and I believe most of the “popular” multi-language plugins offer this type of functionality.
~ Cais.
Forum: Networking WordPress
In reply to: How to find any website table maker?Forum: Installing WordPress
In reply to: 5.1 Install Stops@dgmc – I would say there may need to be more context to the issue you are seeing although given this is a local installation you can likely start by ensuring your database user has _ALL_ privileges to write to the database itself.
~ Cais.
Forum: Fixing WordPress
In reply to: veritabanı problemleriMake certain you have a back-up of your site, then have a look at this:
../wp-admin/maint/repair.php
Please be very careful using the above.
~ Cais.
This function https://codex.wordpress.org/Function_Reference/is_plugin_active can be used to find “active” plugins although the number of instances of the plugin being used in a widget area is something I am not certain of although there is a complete(?) listing of conditional functions at the bottom of the codex page which might get you pointing in the right direction.
Best of luck.
~ Cais.
PS: I have some code in my BNS Support plugin (current iteration starts around this line: https://github.com/Cais/bns-support/blob/master/bns-support.php#L597 … I just haven’t gotten around to updating my plugins recently although you can still find it here https://wordpress.org/plugins/bns-support/) that might help as well, you’re welcome to have a look at it.
Forum: Fixing WordPress
In reply to: Custom Taxonomies Don’t Show in the sidebar@harshajayman – Tags may not be listed with more recent releases as they were in older releases of WordPress although the auto-complete functionality still does exist and as you type in the tag name a list of tags with those letters should appear for you to choose from.
~ Cais.
Forum: Fixing WordPress
In reply to: Change the sequence of the sites@ashkan0706 – Are you using a custom Menu and/or does your current theme define a specific menu order versus the page order you are trying to use?
~ Cais.
Forum: Fixing WordPress
In reply to: Disabling Certain Default Rest Endpoints@jfantasybooks – Have you looked at this function:https://developer.wordpress.org/reference/functions/is_user_logged_in/
~ Cais.
Forum: Fixing WordPress
In reply to: change menu position shop isle@fashamuslimcloth – I would suggest looking at creating a custom menu and then arranging the items in the menu to match the order you are looking to have.
~ Cais.
Forum: Localhost Installs
In reply to: What need does WordPress have for communication with wordpress.org@aajax – You can try adding the following to your installation’s wp-config.php file:
define('WP_HTTP_BLOCK_EXTERNAL', true); // block external requestsThis codex article section goes into more depth: https://codex.wordpress.org/Editing_wp-config.php#Block_External_URL_Requests
~ Cais.
- This reply was modified 7 years, 1 month ago by Edward Caissie.
Forum: Fixing WordPress
In reply to: Duplicated Meta Description@protovest1 – You might look at removing one of the
wp_titlelines, I would suggest this one:<title><?php bloginfo(‘name’); ?><?php wp_title(); ?></title>~ Cais.
Forum: Fixing WordPress
In reply to: List Block – Left Justify@flyntm – Try opening the customizer and adding the following CSS:
div.wp-block-media-text__content > ul > li { text-align: left; }If the above doesn’t work, you can also add
!importantto <i>force</i> the use of the text-align property.~ Cais.
Forum: Fixing WordPress
In reply to: How to disable font awesome@spade – Your caching plugin is masking the information in the page source that would allow you to find the font-awesome implementation with a search of the page source. Try disabling the caching plugin and then search your page source to find which plugin is calling font-awesome.
~ Cais.
Forum: Fixing WordPress
In reply to: make site portal for guests@greenscreen – I’d suggest looking at subscription type plugins to see if they would suit your needs although almost all require registration in some form or another to work correctly.
~ Cais.