Domino_ukraine
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Moving wordpress to a new domain using different permalinksOh, accurately, and to add a new domain, I forgot …
RewriteEngine On RewriteRule ^old-site.com/(.*)/(.*)/(.*)/(.*)/$ new-site.com/$4/ [L]
Try it? if it still actually ??
Forum: Fixing WordPress
In reply to: Multiple themes for one websiteShould I recreate the same menu structure in each of the pages? – if you want that menu will be different, than offcourse ??
Forum: Fixing WordPress
In reply to: Moving wordpress to a new domain using different permalinksSomethink like this:
RewriteEngine On RewriteRule ^/(.*)/(.*)/(.*)/(.*)/$ /$4/ [L]
But in this version of the title post should clearly match
Forum: Fixing WordPress
In reply to: Multiple themes for one websiteIn WP there is a good thing – a template for the page.
create a template as much as you want, and then simply point to a post / page which template to use.
This seems to be available in new versions of WP.Forum: Fixing WordPress
In reply to: Can't find custom field panelMaybe it’s the configuration screen:
when you’re on a page edit posts at the top is a button “Display Settings” – it is you choose the fields that will be listed.
In them case?Forum: Fixing WordPress
In reply to: My personal information?In theory, you could just be played by your colleagues/friends. Get the last name from the e-mail address (if your last name where indicated) is possible. if the domain is registered to you and showing your last name – then whois.net show that last name.
Forum: Fixing WordPress
In reply to: IIS redirecting non-wwwThere is a point “Non-WWW to WWW Redirect for IIS” – I hope will help.
Forum: Fixing WordPress
In reply to: IIS redirecting non-wwwsorry, did not notice
https://www.mcanerin.com/EN/articles/301-redirect-IIS.asp – The only thing I can advise. I have only three sites and everything on linux …Forum: Fixing WordPress
In reply to: IIS redirecting non-wwwhttps://salon-domino.com.ua/%d0%b1%d0%b5%d0%b7-%d1%80%d1%83%d0%b1%d1%80%d0%b8%d0%ba%d0%b8/1/
=====oh, now i understand.
. htaccess?
Simply register, so that all requests forwarded to https://www https://?? This option is suitable? If so, create a file named “. Htaccess” and publish it in the root directory.
Inside the file, write:RewriteEngine On RewriteCond %{HTTP_HOST} ^site\.com RewriteRule ^(.*)$ https://www.site.com/$1 [R=permanent,L]
This will redirect all requests without www to url with www.
it seems so. If it does not – write. Another hour I’ll be here ??Forum: Fixing WordPress
In reply to: IIS redirecting non-wwwIf I correctly understand you, you are interested in the transition from a search engine. Right? You can set it up in Google Webmaster panel – there is a point to “show the result with www”. Now, I’ll try to find where it is.
Forum: Fixing WordPress
In reply to: Can't find custom field panelCan a little more – I do not quite understand what you’re looking for …
Forum: Plugins
In reply to: Is there a plugin to create images on the fly?I can help only with generate image:
<?php $font = "/VIVALDII.TTF"; // path to font ttf-files (FULL!!!!) $fontsize = '64'; // font-size $fontcolor = "#ff0000"; // font-color $text = "Wordpress"; // Text $cmd = "convert -background none -font \"".$font."\" -pointsize ".$fontsize." -fill \"".$fontcolor."\" label:\"".$text."\" -trim png:-"; header("Content-type: image/png"); system($cmd); ?>
If you wonna make <h3> with image, then must be somethink:
<h3> <?php $font = "/VIVALDII.TTF"; $fontsize = '64'; $fontcolor = "#ff0000"; $text = YOUR TITLE FUNCTION; $cmd = "convert -background none -font \"".$font."\" -pointsize ".$fontsize." -fill \"".$fontcolor."\" label:\"".$text."\" -trim png:-"; header("Content-type: image/png"); system($cmd); ?> </h3>
Well, something like that. dare ??
Forum: Plugins
In reply to: [WP Photo Album Plus] Slide-show hides menu-drop-down. Z-order problem ?i think so.
<div id=”theslide1-1″ class=”theslide” style=”z-index: 901″> image’s block. Z-index of menu must be higher (for example 902 ?? )Forum: Themes and Templates
In reply to: post borderI can give an idea:
before writing a post create a variable. For example, $tmp.
Initially it is set to 1 (number of current post).
in php code that displays a post, write something like this:switch ($tmp) { case 1: {$border = "style='border:1px solid red;'";$tmp=2;} case 2: {$border = "style='border:1px solid red;'";$tmp=3;} case 3: {$border = "";$tmp=1;} }
And place $border into your post output.
Must be work ??
At least two columns worked for me once ??Forum: Themes and Templates
In reply to: [Panorama] Pages oder …use plugin My page order ??