Forum Replies Created

Viewing 15 replies - 16 through 30 (of 31 total)
  • Thread Starter martinstorey

    (@martinstorey)

    Hi,

    It seems difficult to get the support on the WP Bakery Visual Composer.

    Would it be possible to just remove that script line from the code? I can see the code when pressing F12 but can’t see which file it is in.

    Thank you

    Thread Starter martinstorey

    (@martinstorey)

    I’ve posted on that but it might be a different Visual Composer and not Visual Composer WPBakery……

    Will see

    Thank you

    Thread Starter martinstorey

    (@martinstorey)

    Hi,

    That’s great, thank you. I will do that now.

    Thanks again for your help.

    Thread Starter martinstorey

    (@martinstorey)

    Hi Barnez,

    Thank you for this. Yes the message does go when you disable this. But it brings up a error on the top line saying vc_row and vc_column. But pop up disappeared.
    The menu bar goes white but the menu items are still there if you hover over them.

    I tried putting on Visual Composer as a new plugin but that didn’t solve it.

    So it seems I can’t disable without the error. Unless its a setting in WP Bakery Visual Composer?

    Unless I can edit that code in a hard code file?

    Thank you

    Martin

    Thread Starter martinstorey

    (@martinstorey)

    Hi.
    The setting is in settings – general then the admin email address.

    Thank you

    Thread Starter martinstorey

    (@martinstorey)

    This is now solved.

    Forum: Fixing WordPress
    In reply to: Permalink Issue
    Thread Starter martinstorey

    (@martinstorey)

    Thank you very much for this.
    Hope you have a good day

    Forum: Fixing WordPress
    In reply to: Permalink Issue
    Thread Starter martinstorey

    (@martinstorey)

    ok, I will leave it like that then. I don’t think there is anything else in the htaccess that I would miss is there?

    thank you for this

    Forum: Fixing WordPress
    In reply to: Permalink Issue
    Thread Starter martinstorey

    (@martinstorey)

    Hi,

    I have restored and just put in your lines above and it seems to be working.

    What about the other lines though, do I not need them?
    I have an ssl that I would like working

    thank you

    Forum: Fixing WordPress
    In reply to: Permalink Issue
    Thread Starter martinstorey

    (@martinstorey)

    Hi,

    at the moment I am doing a plugins and database restore so that is why it is all code. Basically I ballsed it up. When it has restored then I will try the above.

    Forum: Fixing WordPress
    In reply to: Permalink Issue
    Thread Starter martinstorey

    (@martinstorey)

    Yes, after changing the permalink from default (plain) to postname I get the error.
    I will take maintenance mode off so you can look.
    I don’t have any caching plugins installed that I can see.

    Thank you

    Forum: Fixing WordPress
    In reply to: Permalink Issue
    Thread Starter martinstorey

    (@martinstorey)

    I have changed the permalinks to postname and this is now the code:

    
    # BEGIN GD-SSL
    <IfModule mod_rewrite.c>
    Options +FollowSymLinks
    RewriteEngine On
    RewriteCond %{HTTPS} !=on
    RewriteCond %{HTTP_USER_AGENT} ^(.+)$
    RewriteCond %{SERVER_NAME} ^renkumstudauctions.co.uk$ [OR]
    RewriteCond %{SERVER_NAME} ^www.renkumstudauctions.co.uk$
    RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]
    Header add Strict-Transport-Security "max-age=300"
    </IfModule>
    # END GD-SSL
    
    # BEGIN rlrssslReallySimpleSSL rsssl_version[3.3.1]
    <IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteCond %{HTTP:X-Proto} !SSL
    RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
    </IfModule>
    # END rlrssslReallySimpleSSL
    # BEGIN WordPress
    # The directives (lines) between <code>BEGIN WordPress</code> and <code>END WordPress</code> are
    # dynamically generated, and should only be modified via WordPress filters.
    # Any changes to the directives between these markers will be overwritten.
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress
    RewriteEngine Off
    AddHandler application/x-httpd-php72 .php .php5
    DirectoryIndex index.cgi index.php
    
    # BEGIN WordPress
    # The directives (lines) between <code>BEGIN WordPress</code> and <code>END WordPress</code> are
    # dynamically generated, and should only be modified via WordPress filters.
    # Any changes to the directives between these markers will be overwritten.
    # END WordPress
    
    Forum: Fixing WordPress
    In reply to: Permalink Issue
    Thread Starter martinstorey

    (@martinstorey)

    Edit:

    It had those lines and now does not, maybe its because I put it back to the default permalink structure?

    Forum: Fixing WordPress
    In reply to: Permalink Issue
    Thread Starter martinstorey

    (@martinstorey)

    Hi,

    Yes the .htaccess has that code.

    This is the contents of my .htaccess file:

    
    # BEGIN GD-SSL
    <IfModule mod_rewrite.c>
    Options +FollowSymLinks
    RewriteEngine On
    RewriteCond %{HTTPS} !=on
    RewriteCond %{HTTP_USER_AGENT} ^(.+)$
    RewriteCond %{SERVER_NAME} ^renkumstudauctions.co.uk$ [OR]
    RewriteCond %{SERVER_NAME} ^www.renkumstudauctions.co.uk$
    RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]
    Header add Strict-Transport-Security "max-age=300"
    </IfModule>
    # END GD-SSL
    
    # BEGIN rlrssslReallySimpleSSL rsssl_version[3.3.1]
    <IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteCond %{HTTP:X-Proto} !SSL
    RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
    </IfModule>
    # END rlrssslReallySimpleSSL
    # BEGIN WordPress
    # The directives (lines) between <code>BEGIN WordPress</code> and <code>END WordPress</code> are
    # dynamically generated, and should only be modified via WordPress filters.
    # Any changes to the directives between these markers will be overwritten.
    
    # END WordPress
    RewriteEngine Off
    AddHandler application/x-httpd-php72 .php .php5
    DirectoryIndex index.cgi index.php
    
    # BEGIN WordPress
    # The directives (lines) between <code>BEGIN WordPress</code> and <code>END WordPress</code> are
    # dynamically generated, and should only be modified via WordPress filters.
    # Any changes to the directives between these markers will be overwritten.
    # END WordPress
    
    Thread Starter martinstorey

    (@martinstorey)

    Hi,

    Sorted it. Was conflicting with the FB Feed widget so changed that plugin.

    Thank you

Viewing 15 replies - 16 through 30 (of 31 total)