Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)
  • Hi
    I have the same problem and reverted to v1.0.2
    I don’t think I use other custom divi modules.
    Sorry, I don’t have more informations to help you identify the cause.
    Cheers

    Thread Starter aldelpech

    (@aldelpech)

    It works !
    Thanks a lot
    Anne-Laure

    Thread Starter aldelpech

    (@aldelpech)

    THanks John for your reply.

    So the only setting for the Apache module is the .htaccess location.

    Here is what’s not working.
    First I have a working redirection set like this :
    screen shot : a redirection setting
    This Redirection is in the “Redirections WP” group, which uses the WordPress module, as shown here : Screenshot : redirection groups

    When this redirection is set like this, https://www.cecilebonnet.com/old-page/ is redirected to (non-existant) https://autre-site.com/new-page .

    If I now move this redirection to the “Redirections Apache” group, which uses the Apache module :
    The .htaccess file is modified as shown in this screen shot of the end of the .htaccess file.
    But the redirection is not executed (screenshot of my browser).
    I hope you will be able to find why this doesn’t work properly.
    Thanks
    Anne-Laure

    Merci d’avoir tenu compte de ma réaction.
    C’est vrai qu’il y a une phase d’adaptation pour comprendre comment fonctionne l’extension, même si c’est très simple ensuite.
    C’est vrai aussi que la signification des étoiles est à double sens. Mais heureusement qu’il est possible de corriger.
    Anne-Laure

    En tant que francophone et utilisatrice enthousiaste de l’extension “strong testimonials”, je ne peux pas m’empêcher de répondre à cette évaluation injuste.

    @flam696 j’utilise cette extension depuis plusieurs semaines maintenant. Je l’ai sélectionnée après en avoir essayé plusieurs. Lorsque le thème est correctement conçu, elle fonctionne parfaitement, sans aucun bugs. Ca, c’est normal. Je suis aussi satisfaite car cette extension est très bien conçue pour l’utilisateur, avec un éventail impressionnant de possibilités et ce, sans nuire à la simplicité d’usage. Et je suis enthousiaste car l’auteur de l’extension est très présent et répond vite à toutes les demandes de support, inévitables vu la variété des thèmes et extensions avec lesquelles ils faut cohabiter.
    La moindre des choses serait soit de ne pas faire d’évaluation négative, soit de la justifier de manière détaillée pour que les autres puissent savoir dans quel cas l’extension ne fonctionnera pas.

    @cdillon27 just trying to say in french that this evaluation is unfair and if there really is a bug, it should be described precisely along with the bad evaluation.

    Thread Starter aldelpech

    (@aldelpech)

    Thanks a lot!
    A added this function in my code so that page with id 914 will show only the testimonials with a ‘orientation’ taxonomy set to ‘orientation-isa’ while all other pages will show testiminials with the default ‘orientation’, which is set to ‘orientation-complet’

    function clea_ib_strong_testimonials_query_args( $args ) {
    
    	if ( is_page( 914 ) ) {
    		
    		$orientation_tag_slug = 'orientation-isabelle' ;
    
    	} else {
    		
    		$orientation_tag_slug = 'orientation-complet' ; // is default 'orientation' value
    		
    	}
    
    	/* using the term slug: */
    	$args['tax_query'] = array(
    		array(
    			'taxonomy' => 'orientation',
    			'field'    => 'slug',
    			'terms'    => $orientation_tag_slug
    		)
    	);	
    	return $args;
    }
    add_filter( 'wpmtst_query_args', 'clea_ib_strong_testimonials_query_args' );
    
    Thread Starter aldelpech

    (@aldelpech)

    Hi, I use it only to redirect logged in users to the page they initially wanted to go to : in REDIRECTION, I set every user who is not administrator to be sent to “referer”. I also put the theme my login widget in the sidebar so that anyone can login (not register).
    hope this helps

    Hi,

    I really like this theme. I’m encountering a problem though.
    I selected a right sidebar layout in the theme option. I can select a no sidebar template for a “normal” page.
    But I don’t understand how to do that in a page template made in order to display specific text (for now you can see the output on http://valeurperenne.com/produits-et-services/ which is a development website.
    In order to not display the sidebar I don’t want, I add to add style in the template :

    • <div id=”content-box” style=”width:100%;”>
    • <div class=”sidebar-frame” style=”display: none;”>

    I’m sure there’s another way. I tried of_get_option('page_sidebar_position') = 'none'
    but I got an error notice.

    What should I do ?
    Thanks

    @edgarmut
    You may put the file in the /www/wp-content/themes/firmness directory.

    This theme is beautiful and, as you do, I really want to make it work for me.

    @pesiin : I had the same problem. I solved it by creating a front-page.php file in which I pasted the content of index.php.
    I put it in a child theme of firmness but you may also store it in the original theme directory.
    Then I went back to the wordpress dashboard and switched the front page display to a static page.
    It’s perfect !

Viewing 10 replies - 1 through 10 (of 10 total)