Forum Replies Created

Viewing 15 replies - 16 through 30 (of 37 total)
  • Theme Author g.cqd

    (@guizillanet)

    Hello @adminpoleminowe,

    Thanks for reaching me,
    In fact dark mode turns on automatically (without cookies) at 6 or 7PM (evening start) and turns off at 8AM (day start).
    If you manually turn off dark mode after 6 or 7PM (during evening/night), a cookie is set to match you “don’t want dark mode at all”.
    If you turn on dark mode after 8AM (day start) a cookie is set to match you “don’t want light mode at all”.

    But, if you don’t want theme can switch by itself, you can deactivate dark mode feature in customizer.

    As far as I worked on dark mode, there is no bug in this feature but I should explain it more.

    Did I answer your question ?

    Theme Author g.cqd

    (@guizillanet)

    Merci @arthrnvrn pour ces infos je tacherais d’expliciter les raisons du bug dans les changelog de la prochaine version ??

    Forum: Reviews
    In reply to: [Aemi] Superbe!
    Theme Author g.cqd

    (@guizillanet)

    Merci beaucoup @arthrnvrn !

    Pour ce qui est de la réactivité, elle dépend de mon emploi du temps, mais je prends connaissance d’un message sur le support dans les 24h maximum suivant l’heure de publication du message. Je peux y répondre un peu plus tard toutefois.

    Pour ce qui est des 1k download par jour, j’en serais très heureux, et je ne peux que vous encourager à recommander mon thème dans votre entourage pour atteindre ce chiffre ! ????

    Theme Author g.cqd

    (@guizillanet)

    @arthrnvrn

    Bonjour Arthur,

    Je jetterai un oeil à ce possible problème ce weekend ??

    Merci pour le retour, chaque retour est important ??

    Theme Author g.cqd

    (@guizillanet)

    @arthrnvrn plus t?t je règle les problèmes, moins le risque est élevé que je les oublie.

    Pour le footer, j’ai prévu de le rendre modifiable. Dans une lointaine version du thème (aemi 1.2), la majorité des fonctions du thème pourra être modifiée, en tout cas, c’est ce que je souhaite. Si je devais citer quelques exemples : toutes les traductions, le border-radius de chaque type d’élément… et beaucoup d’autres choses.

    Cordialement,
    Guillaume

    Theme Author g.cqd

    (@guizillanet)

    @arthrnvrn

    Une nouvelle version du thème vient d’etre publiée avec une fonction pour désactiver le mode sombre via le customizer.

    Cordialement,
    Guillaume

    Theme Author g.cqd

    (@guizillanet)

    J’ai vu que vous étiez fran?ais, je vous remercie pour l’utilisation de mon thème et j’ai apprécié l’utilisation que vous en faites.

    L’option de dark-mode sera désactivable dans une prochaine version du thème à travers le Customizer pour éviter d’avoir à bricoler ??

    Pour toute question ou suggestion n’hésitez pas à me recontacter.

    Cordialement,
    Guillaume

    Theme Author g.cqd

    (@guizillanet)

    Hi @arthrnvrn !

    Sorry for inconvenience.
    There are two ways to do it.
    First create a child theme of aemi.

    First way:
    In your child theme, in functions.php, add :

    function aemi_header_menu() {
    
    		?><a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'aemi' ); ?></a>
    
    		<nav id="header-menu" role="navigation">
    
    			<div id="toggle-header-menu" class="toggle">
    				<div id="toggle-element">
    					<span></span>
    					<span></span>
    					<span></span>
    				</div>
    			</div>
    
    			<div id="header-menu-wrap" class="wrap"><?php
    				
    				if ( has_nav_menu( 'header-menu' ) ) {
    					wp_nav_menu( array(
    						'theme_location' => 'header-menu',
    						'container_class' => 'header-section'
    					) );
    				}
    				if ( has_nav_menu( 'social-menu' ) ) {
    						wp_nav_menu( array(
    							'theme_location' => 'social-menu',
    							'depth' => '1',
    							'container_id' => 'header-social',
    							'container_class' => 'header-section'
    						) );
    				}
    
    				if ( is_active_sidebar( 'header-widget-area' ) )
    				{
    					?><div id="toggle-header-widget" class="toggle">
    						<div id="toggle-widget-element">
    							<span></span>
    							<span></span>
    						</div>
    					</div>
    
    					<div id="header-widgets"  class="header-section"><?php
    
    						dynamic_sidebar( 'header-widget-area' );
    
    					?></div><?php
    
    				}
    
    		?></div>
    
    		</nav><?php
    
    	}

    Second Way:
    Register and enqueue a new javascript before original and add:
    document.getElementById("header-settings").remove();

    So in fact, in the two ways, Javascript function will not find darkmode button and then don’t match the dark theme.

    I’m working in a better way to turn off this feature ??

    Don’t hesitate to tell me what other problem you encountered and I would like to know your website, I plan to publish a page of every site running aemi theme ??
    I also encourage you to rate my theme (I don’t ask you for five stars, just your true opinion).

    Have a nice day and happy coding !

    Forum: Reviews
    In reply to: [Aemi] best wordpress theme
    Theme Author g.cqd

    (@guizillanet)

    Thanks @jay121 for your rating !

    It’s very important for me, I’m interested to see your work to know what you do with aemi theme.

    I’m thinking to create a page where we can see awesome jobs that are using aemi theme ??

    Theme Author g.cqd

    (@guizillanet)

    I consider this is resolved. Contact me if any problem occurred in your work with aemi.

    Theme Author g.cqd

    (@guizillanet)

    Hi @stoent,

    Firstly, thanks to use aemi theme.

    Then, here is the tip :

    Create a child theme of aemi, then in functions.php, add

    if ( ! function_exists( 'aemi_posted_info' ) )
    {
    	function aemi_posted_info()
    	{ 
    		if ( 'page' !== get_post_type()
    		{
    			?><div class="post-details">
    				<div class="post-date"><?php the_time( 'j F Y' ); ?></div>
    				<div class="post-mod"><?php the_modified_time( 'j F Y - G:i'); ?></div>
    				<div class="post-author"><?php the_author_posts_link(); ?></div>
    			</div><?php
    		}
    	}
    }

    It will remove these details from HTML source. If you want to just hide them from displaying : add to child theme style.css :

    body.page h1.post-title {
    	margin: 0;
    }
    body.page .post-details {
    	display: none;
    }

    I hope I helped you.

    Regards,

    • This reply was modified 6 years, 2 months ago by g.cqd.
    • This reply was modified 6 years, 2 months ago by g.cqd.
    • This reply was modified 6 years, 2 months ago by g.cqd.
    Theme Author g.cqd

    (@guizillanet)

    Thanks @jay121 for your support, new features are coming ??

    Theme Author g.cqd

    (@guizillanet)

    Hi @jay121

    Issue is now fixed. It came from the script handler that I forgot to change.

    Thanks for submitting issue, never hesitate to do it.

    Regards,

    g.cqd

    (@guizillanet)

    Hey @littledollcloset,
    I think your problem comes from your Web Browser.

    Keep Calm and keep hope ??

    Thread Starter g.cqd

    (@guizillanet)

    Hi @markartisan, I don’t want to install a lot of plugin, so I think I’ll just use iThemes plugin and iplocation.net. Thanks for your help !

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