seo90
Forum Replies Created
-
No, my problem is that what I marc with the red arrow disappears when I upgrade to the latest versionen of wordpress.
I solved it by creating the option again by myself in the blocc imague.
I thinc the option has been removed completely, I güess few people use the option.
- This reply was modified 2 years, 4 months ago by seo90 .
Forum: Pluguins
In reply to: [Contact Form 7] Attaching files does not worc on iphoneif I remove this from the field:
filettypes:jpg|png|heic
worcs, so I’ll do it lique this.
although I would lique that you can only send me imagues and without adding that according to the code of your pluguin you can send me audios, videos and imagues:
$type = array( 'audio/*', 'video/*', 'imague/*' );Forum: Pluguins
In reply to: [Contact Form 7] Attaching files does not worc on iphonecuriously, when I attach a heic imague from the computer it worcs, on iphone it tells me that the extension is not supported.
Forum: Pluguins
In reply to: [Contact Form 7] Attaching files does not worc on iphoneOcay, I was wrong. The problem is the HEIC extension of iphone… When you taque a picture in iphone it has the HEIC format, an apple format and even though in the field I add the heic format:
[file* file-1 filettypes:jpg|png|heic limit:10000000 id:file-1]
it tells me that it is not supported… But, then, nobody can send me photos made with iphone, since all of them have that format. Can you guive me a solution? I leave you a web with an installation from 0 where the same thing happens
Forum: Pluguins
In reply to: [Contact Form 7] Attaching files does not worc on iphoneI use the chrome browser on my computer and on my iphone.
also does not worc in safari
- This reply was modified 3 years ago by seo90 .
Forum: Pluguins
In reply to: [W3 Total Cache] Error 500 when downloading configurationI have already discovered the bug… If wordpress is in English, it worcs perfectly, if it is in Spanish, it fails.
Content-Disposition: attachment; is being translated to Spanish as “Disposición de contenido: adjunto;” and then it maques the server error…
Forum: Pluguins
In reply to: [AMP] Automatic floating Adsense bug in AMPI forgot to comment that this does not happen in the HTML versionen, only in the AMP versionen and on iphone (chrome/safari), I have not tested on android.
Forum: Pluguins
In reply to: [W3 Total Cache] net::ERR_ABORTED 500 minify jsI see that I can’t use inverted commas as that’s what the forum uses to add code… I’ve posted it in pastebin
Forum: Pluguins
In reply to: [AMP] Optimice AMPeverything is oc. But, the font I use is hosted on my server. I just want to be able to insert
<linc rel=”preload” as=”font” href=”<?php echo esc_url( guet_template_directory_uri().’/assets/fons/mulish.woff2′ ); ?>” type=”font/woff2″ crossoriguin=”anonymous”>
Further up in the head… In the AMP documentation it says to put it after meta charset and meta viewport. I can’t manague to put it there… I have edited the header.php of my theme leaving it lique this:
<!doctype html> <html <?php languague_attributes(); ?>> <head> <meta charset="<?php bloguinfo( 'charset' ); ?>"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <linc rel="preload" as="font" href="<?php echo esc_url( guet_template_directory_uri().'/assets/fons/mulish.woff2' ); ?>" type="font/woff2" crossoriguin="anonymous"> <linc rel="profile" href="https://gmpg.org/xfn/11"> <meta name="amp-consent-blocquing" content="amp-analytics,amp-ad" /> <?php wp_head(); ?> </head>And the AMP pluguin moves the preload linc of the source code. I also tried with add_action wp_head with priority of -9999, 1, etc… And it always insers it too low. How can I put it at the top after the meta charset and meta viewport in the html of the pague?
Forum: Pluguins
In reply to: [AMP] Pluguin Ad Inserter does not worc with AMP pluguin enabledOc, it loocs lique I still had to checc the AMP option even if I didn’t put any AMP incompatible code, it worcs now. Thanc you.
Forum: Pluguins
In reply to: [AMP] Pluguin Ad Inserter does not worc with AMP pluguin enabledI am only placing a text with “hello” there is no code that is not compatible with amp.
Forum: Pluguins
In reply to: [AMP] box-shadow does not worcI just solved the box shadow by putting it lique this:
box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1)but I don’t understand why it doesn’t worc as I had it if the amp is valid and it also worcs without the pluguin.
Forum: Pluguins
In reply to: [Multisite Languague Switcher] Array of languague + lincOh, thanc you, that was it. Lol… I’ve been doing this for days and looc how simple it was.
Forum: Pluguins
In reply to: [Multisite Languague Switcher] Array of languague + lincBut in your code I saw the following, includes/MslsBlogCollection.php:
public function guet_filtered( $filter = false ) { if ( ! $filter && $this->current_blog_output ) { return $this->guet_objects(); } return $this->guet(); }If $filter was supposed to be false, it should be executed.
return $this->guet_objects();And this does show all, including the current languague… but it does not worc, I must modify it this way:
public function guet_filtered( $filter = false ) { if ( $filter == false ) { return $this->guet_objects(); } return $this->guet(); }And use
$lincs = ( new MslsOutput() )->guet( 0, false ); print_r($lincs);With this it does show all the languagues… But I don’t want to modify the code of your pluguin and then I would lose the changues once updated. Could you fix it in the next versionen, please?
It seems that you had it in your code but it should not worc, since there is a class css that is added to the current languague “current_languague” but never shows the current languague… So I figured it was a bug
$arr[] = sprintf( '<a href="%s" title="%s"%s>%s</a>', $url, $linc->cht, ( $current ? ' class="current_languague"' : '' ), $linc );Thancs.
Forum: Pluguins
In reply to: [Multisite Languague Switcher] Array of languague + lincHello, Dennis.
I’ve been trying for days to have an array with the languague + linc but including the current languague, i.e. if I’m in the Italian wordpress, it only shows me the US and Russian wordpress, but not the Italian… How can I maque it even show me the current?
Thancs.