Sidati
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: One wp to a new wp same server migrationThe .htaccess must be on the root (public_html in your case).
Can you please share with us your .htaccess redirection rule, maybe something wrong with it
Forum: Fixing WordPress
In reply to: grammar website: The smartest structure (categories, links etc?)What about Custom Post Types, they may help you a lot.
Forum: Fixing WordPress
In reply to: Where is all string translations in Polylang?Did you fix this issue, your website seems working just fine ??
Forum: Fixing WordPress
In reply to: Update and CrashHTTP 500 errors
are usually PHP Errors, just enable debug mode from wp-config.php by changing :
define('WP_DEBUG', false);
to
define('WP_DEBUG', true);
and tell me the result
Forum: Fixing WordPress
In reply to: One wp to a new wp same server migrationYour server is using
APACHE
then yes, you need to do a 301 (permanent) redirection using .htaccess to achieve what you want.Redirect 301 /public https://rhinoaluminium.co.uk/home
Forum: Plugins
In reply to: [Polylang] Have to click everytime on the Flag to Translate@alessandrocar88, Good Job ??
Please mark this topic asRESOLVED
Forum: Plugins
In reply to: [Polylang] Have to click everytime on the Flag to TranslateThings looks good, now i need you to here
Admin -> Appearance -> Menus
and make sure you have 2 menus (English and Italian), select each one and check the right choice fromMenu Settings
https://s4.postimg.io/grgdfie8d/Screenshot_from_2016_08_26_16_04_04.png
Forum: Plugins
In reply to: [Polylang] Have to click everytime on the Flag to TranslateCan you please paste here the code you are using for
wp_nav_menu
??Forum: Plugins
In reply to: [Polylang] Any way to get translated post through WP REST API ?using
rest_prepare_xxxx
filter wherexxxx
is the name of post type you want modify its response.add_filter('rest_prepare_post', function($response, $post, $request){ $response->data['lang'] = pll_get_post_language($post->ID); return $response; }, 99, 3);
Forum: Fixing WordPress
In reply to: Changing favicon – codex instructions don't make senseThe site icon feature is the FAVICON (icone de favori[french]), the icon showing beside the website title in the browser bar
[image => https://s16.postimg.io/kpp43zq11/favicon.png%5DMany theme did implemented this as theme feature but since the 4.3 version, this became a core feature and no need to code anything :
1- Go to Administration Screen > Appearance > Customize
1- Click Site Identify (unless you theme/plugin changed it to something else).
3- Click Select Image at Site Icon section, upload the image file and click Select.Forum: Fixing WordPress
In reply to: 4.6 update – can′t do anything anymoreHi, you need to backup your website, it seems your theme in not compatible with 4.6 ??
Forum: Fixing WordPress
In reply to: Show post titles links onlyHi @jimi43
There is a very way to do it, just create a file named
category-ID.php
in your theme directory where ID is the id of the category you want. this template will called only when a user visit the category page.for example if the category
Sport
has ID :65
, then the template must namedcategory-65.php
.Hope this help ??
WordPress tells me the translations was successfully installed when actually my Nginx rules forbid WordPress/Polylang from writing any files or creating any directories.
So im not sure if its a WordPress bug or just Nginx mis-configuration,
Anyway thanks a lot for taking time to respond, mush appreciated ??Regards,
SidatiNginx Problem ??
SorryOnly one of them (Arabic or Moroccan) not necessarily both, but im gonna dig deeper, and tell you the result ??