Navigazione

    Privacy - Termini e condizioni
    © 2020 Search On Media Group S.r.l.
    • Registrati
    • Accedi
    • CATEGORIES
    • Discussioni
    • Non letti
    • Recenti
    • Hashtags
    • Popolare
    • Utenti
    • Stream
    • Interest
    • Categories
    1. Home
    2. flay83
    3. Discussioni
    F

    flay83

    @flay83

    • Profilo
    • Chi segue 0
    • Da chi è seguito 0
    • Discussioni 5
    • Post 20
    • Migliore 0
    • Gruppi 0
    Iscrizione Ultimo Accesso
    Località Udine Età 41
    0
    Reputazione
    20
    Post
    0
    Visite al profilo
    0
    Da chi è seguito
    0
    Chi segue
    User

    badges

    0
    Bookmarks
    0
    Voti
    0
    Ringraziamenti
    0
    Miglior risposte
    Inizia una nuova discussione
    di cosa vuoi parlare?

    Discussioni create da flay83

    • Topic
      Post
      View
      Votazioni
      Post
      Attività
    • F

      Inserire bottoni social nell'header del sito
      CMS & Piattaforme Self-Hosted • • flay83  

      2
      1018
      Visualizzazioni
      0
      Votazioni
      2
      Post

      A

      Dovresti capire qual'è il template del tuo tema wordpress che mostra il campo di ricerca, toglierlo e mettere i social.
      Visto che è la testata dovrebbe essere header.php

    • F

      Campi personalizzati per link permanenti.. HELP!
      CMS & Piattaforme Self-Hosted • • flay83  

      7
      1036
      Visualizzazioni
      0
      Votazioni
      7
      Post

      F

      Ho combinato.. grazie mille!

    • F

      Nextgen Gallery: esiste "pagina principale"?
      CMS & Piattaforme Self-Hosted • • flay83  

      3
      828
      Visualizzazioni
      0
      Votazioni
      3
      Post

      F

      @Katherine said:

      Mi risulta che l'unico modo sia creare un album con tutte le gallerie al suo interno, in effetti è un pò un limite e per questo preferisco Lazyest Gallery

      Sì, ho provato quello infatti.. però così facendo non si ha delle gallerie "navigabili" con i tasti "indietro", etc etc.. una volta entrati in una galleria non si può più tornare indietro!
      Mah.. nessuna altra idea?

    • F

      Plugin o widget Social semplice per WP
      CMS & Piattaforme Self-Hosted • • flay83  

      3
      589
      Visualizzazioni
      0
      Votazioni
      3
      Post

      F

      @thefir3 said:

      Io utilizzerei il widget "Testo" dove all'interno ci piazzo un codice html dove mi richiama i loghi dei social (che avrò caricato in precedenza) e dove imposto manualmente il link alle varie pagine dei social, in questo modo evito di installare un ulteriore plugin.

      Sì, pensavo anch'io.. eventualmente proverò questa opzione.. grazie!

    • F

      Modifica template homepage DeepFocus
      CMS & Piattaforme Self-Hosted • • flay83  

      18
      2909
      Visualizzazioni
      0
      Votazioni
      18
      Post

      F

      @elmanisero said:

      Con questo codice dovresti riuscire a selezionare ciò che vuoi che appaia, ma ti ricordo che il nostro apporto è volontario, gratuito e a discrezione, ci siamo già capiti.

      [php]<?php get_header(); ?>

      <div id="content-full"> <div id="home-top"></div> <div id="hr"> <div id="hr-center"> <div id="intro"> <div class="center-highlight"> <div class="container"> <?php if (get_option('deepfocus_featured') == 'on') include(TEMPLATEPATH . '/includes/featured.php'); ?> <?php if (get_option('deepfocus_quote') == 'on') { ?> <div id="tagline"> <p><?php echo(get_option('deepfocus_quote_one')); ?></p> <span class="quote2"><?php echo(get_option('deepfocus_quote_two')); ?></span> </div> <!-- end #tagline--> <?php } ?> </div> <!-- end .container --> </div> <!-- end .center-highlight --> </div> <!-- end #intro --> </div> <!-- end #hr-center --> </div> <!-- end --> <div class="center-highlight"> <div class="container"> <?php if (get_option('deepfocus_blog_style') == 'false') { ?> <?php for ($i=1; $i <= 1; $i++) { ?> <?php query_posts('page_id=' . get_pageId(html_entity_decode(get_option('deepfocus_home_page_'.$i)))); while (have_posts()) : the_post(); ?> <div class="service"> <h3 class="hometitle"><?php the_title(); ?></h3> <?php global $more; $more = 0; the_content(''); ?> <a href="<?php the_permalink(); ?>" class="readmore"><span><?php _e('Learn More','DeepFocus'); ?></span></a> </div> <!-- end .service --> <?php endwhile; wp_reset_query(); ?> <?php } ?> <div class="service" id="blog"> <div id="blog-top"></div> <div id="blog-wrapper"> <div id="blog-content"> <h4 class="widgettitle"><?php _e('From The Blog','DeepFocus'); ?></h4> <div class="recentscroll"> <ul> <?php query_posts("showposts=".get_option('deepfocus_fromblog_number')."&cat=".get_cat_ID(get_option('deepfocus_blog_cat'))); if (have_posts()) : while (have_posts()) : the_post(); ?> <li class="clearfix"> <a href="<?php the_permalink(); ?>" class="title"><span><?php truncate_title(30); ?></span></a> <span class="postinfo"><?php _e('Posted','DeepFocus'); ?> <?php _e('by','DeepFocus'); ?> <?php the_author_posts_link(); ?> <?php _e('on','DeepFocus'); ?> <?php the_time(get_option('deepfocus_date_format')) ?></span> </li> <?php endwhile; endif; wp_reset_query(); ?> </ul> <!-- end ul.nav --> </div> <!-- end .recentscroll --> </div> <!-- end #blog-center --> </div> <!-- end #blog-wrapper --> <div id="controllers2"> <a href="#" id="left-arrow"><?php _e('Previous','DeepFocus'); ?></a> <a href="#" id="right-arrow"><?php _e('Next','DeepFocus'); ?></a> </div> <!-- end #controllers2 --> </div> <!-- end .service --> <div class="clear"></div> <h3 class="hometitle recentworks"><?php _e('Recent Works','DeepFocus'); ?></h3> <div id="portfolio-items" class="clearfix"> <?php $allCats = get_categories(); $blogCats = array(); $blogcat = get_cat_ID(get_option('deepfocus_blog_cat')); foreach ($allCats as $category) { if (in_subcat($blogcat, $category->cat_ID)) $blogCats[] = $category->cat_ID; } $args = array('category__not_in' => $blogCats, 'showposts' => get_option('deepfocus_portfolio_number')); $i = 1; query_posts($args); if (have_posts()) : while (have_posts()) : the_post(); ?> <?php include(TEMPLATEPATH . '/includes/gallery.php'); ?> <?php $i++; endwhile; endif; wp_reset_query(); ?> <div class="clear"></div> <a href="<?php echo(get_category_link(get_cat_ID(get_option('deepfocus_portfolio_cat')))); ?>" class="readmore entergallery"><span><?php _e('Enter The Gallery','DeepFocus'); ?></span></a> </div> <!-- end #portfolio-items --> <?php } else { ?> <div id="content-area" class="clearfix"> <div id="left-area"> <?php $args=array( 'showposts'=>get_option('deepfocus_homepage_posts'), 'paged'=>$paged, 'category__not_in' => get_option('deepfocus_exlcats_recent'), ); if (get_option('deepfocus_duplicate') == 'false') $args['post__not_in'] = $ids; query_posts($args); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <?php include(TEMPLATEPATH . '/includes/entry.php'); ?> <?php $i++; ?> <?php endwhile; ?> <div class="clear"></div> <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } else { ?> <?php include(TEMPLATEPATH . '/includes/navigation.php'); ?> <?php } ?> <?php else : ?> <?php include(TEMPLATEPATH . '/includes/no-results.php'); ?> <?php endif; wp_reset_query(); ?> </div> <!-- end #left-area --> <?php get_sidebar(); ?> </div> <!-- end #content-area --> <?php } ?> </div> <!-- end .container --> <?php get_footer(); ?>[/php]

      Hai ragione!
      Comunque ho combinato.. grazie mille!!