Forum Replies Created

Viewing 15 replies - 1 through 15 (of 26 total)
  • I had the same issue with single curly quote and single straight quote, I have remove them from the original language and then no more problems. Ofer did answer to me on that one earlier, but he could not replicate the issue…. even though it is clearly replicable. Anyhow, if you have any follow up on this thanks to let me know.

    Thread Starter bozoemo

    (@bozoemo)

    Please to note here: I have NOT selected the “rewrite URLs” option

    My guess is something with caching plugin (I am using Cloudflare) or something crashing with a CRON jobs… but it is really weird, that I keep on coming back and a few words show here and there not translated, but the WEIRDEST part is that I see that it was translated from the HISTORY button on TRANSPOSH.

    Anyone had this issue before? Really anyone?

    I finally did find a way to change the wp-admin and have lost password function to work.

    I you grab the code from Easy Hide Login Plugin, you just have to insert and modify it for it to work. I believe the issue with WPS resides with those hooks not being implemented:

    • add_filter( ‘lostpassword_url’
    • add_action(‘lostpassword_form’
    • add_filter( ‘lostpassword_redirect’

    Did you find a solution?

    Thread Starter bozoemo

    (@bozoemo)

    3 weeks and still no answer… or at least a little comment like this feature is not possible?

    No one else, with the same issue?

    same bug here. Anyone solved this issue.
    I am using a multisite installation

    same here with my website.
    did try to reset permalinks. no luck.
    did try to exclude login page from varnish cache. still no luck.
    I have a mu install. WordPress is up to date. Plugin too.
    When I disable the WPS Hide Login, the reset links work perfectly.

    Thread Starter bozoemo

    (@bozoemo)

    One little note,
    If you want to use CF7 specific form in your subsite, you have to tweak the steps 9 with two steps.

    1. first, add a div class with spefic id in the page templates where you want the form to be generic, ex:
    <div id="cf7overide"></div>

    2. second, change the code in the script file with the following (for /refill and /feedback):

    var urlDefined = wpcf7.apiSettings.getRoute("/contact-forms/" + wpcf7.getId( $form ) + "/feedback" );//normal function
       if($('#cf7overide').length > 0){
           urlDefined = 'https://WEBSITEURL.com/wp-json/contact-form-7/v1/contact-forms/' + wpcf7.getId( $form ) + '/feedback';//fixed url
       }

    then, in the ajax function for url, you must link your newly created variable urlDefined

    $.ajax( {
    	type: 'POST',
    	url: urlDefined,
    • This reply was modified 4 years, 11 months ago by bozoemo.
    bozoemo

    (@bozoemo)

    same issue.
    Main site = mainsite.com
    Sub Site = https://www.subsite.com (with www)

    if I enter subsite.com, it will redirect to mainsite.com
    if I enter https://www.subsite.com, everything works good.

    The only solution given by by host provider was to modify the root htaccess with those lines of codes:
    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^SUBSITE.com [NC]
    RewriteRule ^(.*)$ https://www.SUBSITE.com/$1 [L,R=301,NC]
    RewriteCond %{HTTP:X-Forwarded-Proto} !https
    RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]

    But would love to have an explanation on why this is doing it.
    Anyone else with the same issue?

    I do have the same issue with https://www.famoushostels.com

    If I edit from Yoast my <title> to: “… – Europe’s Famous Hostel”, it won’t translate in any language. I mean, on the translation edit mode (tpedit), I would be able to click the purple box at the end of the page (that show the hidden strings, as description and title), but when exit the translation edit mode, the translate title is not recognize and therefore it display the English (site default language).

    After reading this post, I have tested the Yoast plugin and added a single quote into the description meta box and it does the same thing with the description meta tag, meaning if a “single quote” is present, it would save to the db, but when the website is rendered in that language, it would not associate the translated text and therefore display the english (site default language) one instead.

    Any help on this?

    same here… did you find any solution?

    Thread Starter bozoemo

    (@bozoemo)

    Nevermind, found the solution. I had to include the script, after the gallery was build:

     var $gallery = $( '.dgwt-jg-gallery' ),
    		            					$item = $( '.dgwt-jg-item' );
    										 $gallery.photoswipe();
    										 $item.children( 'img' ).each( function () {
    										   if ( typeof $( this ).attr( 'srcset' ) !== 'undefined' ) {
    												$( this ).attr( 'data-jg-srcset', $( this ).attr( 'srcset' ) );
    												$( this ).removeAttr( 'srcset' );
    											}										} );										$gallery.on( 'jg.complete', function ( e ) {										$item.each( function ( ) {													$( this ).on( 'mouseenter mouseleave', function ( e ) {
    														var $this = $( this ),
    															width = $this.width( ),
    															height = $this.height( );
    														var x = ( e.pageX - $this.offset( ).left - ( width / 2 ) ) * ( width > height ? ( height / width ) : 1 ),
    															y = ( e.pageY - $this.offset( ).top - ( height / 2 ) ) * ( height > width ? ( width / height ) : 1 );
    														// top = 0, right = 1, bottom = 2, left = 3
    														var dir_num = Math.round( ( ( ( Math.atan2( y, x ) * ( 180 / Math.PI ) ) + 180 ) / 90 ) + 3 ) % 4,
    															directions = [ 'top', 'right', 'bottom', 'left' ];
    														// If mouse enter
    														if ( e.type === 'mouseenter' ) {
    															// Remove all hover out classes
    															$this.removeClass( function ( index, css ) {
    																return ( css.match( /(^|\s)hover-out-\S+/g ) || [ ] ).join( ' ' );
    															} );
    															// Add in direction class
    															$this.addClass( 'hover-in-' + directions[dir_num] );
    														}
    					
    														// If mouse leave
    														if ( e.type === 'mouseleave' ) {
    															// Remove all hover in classes
    															$this.removeClass( function ( index, css ) {
    																return ( css.match( /(^|\s)hover-in-\S+/g ) || [ ] ).join( ' ' );
    															} );
    															// Add out direction class
    															$this.addClass( 'hover-out-' + directions[dir_num] );
    														}
    													} );
    												} );
    					
    											} ); // END .on method

    Thanks anyway for the non-support

    • This reply was modified 7 years, 11 months ago by bozoemo.
    Thread Starter bozoemo

    (@bozoemo)

    Even tried
    `$(‘.single-post .galleryBottom .dgwt-jg-gallery’).trigger(‘jg.complete’);’

    after the gallery is loaded, but still no mouseover effect neither photoswipe action.

    A little help at this point would be quite welcome.

    Thread Starter bozoemo

    (@bozoemo)

    Ok I am really close to it. I have managed to get the display out, but only the lightbox is not functionning now. Here is what I got so far.

    setTimeout(function(){
      $('.single-post .galleryBottom .dgwt-jg-gallery').justifiedGallery({
        captions: false,
        margins: 10,
        rowHeight: 300,
        maxRowHeight:400,
        is_lightbox: 'yes',
        lastRow: 'justify'
      });
    }, 50);

    And I have this error in the console.
    Resource interpreted as Document but transferred with MIME type image/jpeg:

    • This reply was modified 7 years, 11 months ago by bozoemo.
    • This reply was modified 7 years, 11 months ago by bozoemo.
    • This reply was modified 7 years, 11 months ago by bozoemo.
    Thread Starter bozoemo

    (@bozoemo)

    I’ve tried to call
    $('.single-post .galleryBottom .dgwt-jg-gallery').justifiedGallery();

    but it does not return the proper layout. I see the pics, but not justified script is run…

Viewing 15 replies - 1 through 15 (of 26 total)