Перейти к содержанию

avangcom

Актив
  • Постов

    485
  • Зарегистрирован

  • Посещение

  • Победитель дней

    1

Сообщения, опубликованные avangcom

  1. Hello
    I have this code in a format, but the image is not responsive
    Please show me how to make the code responsive

    <img   style  =  "  width  :   350px  ;  margin-top  :   60px  ;  "   src  =  '{QR-CODE-PIC"}'   alt  =  "QR CODE"   /> 

     

    <img   style  =  "  width  :   350px  ;  margin-top  :   60px  ;  "   src  =  '{setting="QR-CODE-PIC"}'   alt  =  "qr code"   /> 

     

  2. The problem was fixed
    To solve this problem, change the specified code in the httaccss file as follows

    <IfModule mod_rewrite.c>
    Options -MultiViews
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule \.(js|css|jpeg|jpg|gif|png|ico|map)(\?|$) /404error.php [L,NC]
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    After the changes

    <IfModule mod_rewrite.c>
    Options -MultiViews
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule \.(js|css|jpeg|jpg|gif|png|ico|map)(\?|$) /404error.php [L,NC]
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ./ /index.php [L]
    </IfModule>

     

    Once you modify this rewrite rule, password protection of the internal folder should work as expected. Clear your browser cache and check the changes.

     

  3. 1 hour ago, Respected said:

    Никак, если только просить папку dev у разработчика.

    Я положил папку dev в папку плагина, это не имело значения.

    Я видел это, но ничего не понимаю. Спасибо за подсказку.

    https://invisioncommunity.com/forums/topic/447443-rebuilding-plugin-xml-from-plugins-directory/

  4. Я включил инструменты разработчика
    Это изображение этого

    e1.thumb.jpg.e73a7e34b4931b9db55933fc35ad74b1.jpg

            $form->add( new \IPS\Helpers\Form\Editor( 'ss_content', $this->id ? $this->content : "", FALSE, array( 'app' => 'swiperslider', 'key' => 'swiperslider', 'autoSaveKey' => 'ss_content' ), NULL, NULL, NULL, 'ss_content' ) );
    

    @HooLIGUN

×
×
  • Создать...