Daragott
Forum Replies Created
-
Forum: Plugins
In reply to: [Media Library Assistant] Copy URLS batchHi David, yes I ve found out a way to copy/paste these urls, thank you.
Forum: Fixing WordPress
In reply to: Plugin for medias URLI ve foud finally, Medis library assistant,, just one problem when i want to copy and paste the the URLS in my CSV file, it also copy the second line: “Edit | Quick Edit | Delete Permanently | Download | View”.
I don’t know how to avoid to copy this second line, what is not good when I have about 300-400-500 pictures in this file.
Here is a printscreen: https://www.vodoudolls.com/wp-content/uploads/2019/10/Untitled-1.jpg
Thank you if you can help me to resolve this
Normand B.
Forum: Plugins
In reply to: [Yoast Duplicate Post] unable to duplicate “News” posts after update!Yess, for me, all is right now,, thanks for your help
Forum: Plugins
In reply to: [Yoast Duplicate Post] unable to duplicate “News” posts after update!HI, clone desappeared from the Model menu of my dashboard. Theme is Ombre by Egemenerd V 1.3
Worpdress version is 4.6.1
Thanks
Norman
awesome plugin, thanks
Forum: Fixing WordPress
In reply to: Creation of photos albumThanks a lot for this information
Forum: Themes and Templates
In reply to: Model Agency ThemesThank you very much. I gonna search for this right now.
Forum: Themes and Templates
In reply to: Model Agency ThemesWell, take a look at my first modeling website. It’s not a wordpress but I would like something like this: peoples can register themselves, they built and manage their portfolio.
Here is the link for my website: https://x-centricmodels.com/index.php
Thank you for your help, I really appreciate it. I saw hundred of themes but nothing yet like what I want.
Norm.
Forum: Plugins
In reply to: [Author Image] Not for novices or the faint-hearted!Thanks Mike, but it does’nt work at all. In the past, I had the author image in the posts. May be it’s due to a new version of the theme, but nothing works with it.
And with all the plugins using JQuerry, nothing works. And the editior of the theme never gave me a sloution to resolve my problem.
I think I gonna try to find another nice theme who will works better. Thanks
Forum: Plugins
In reply to: [Author Image] Not for novices or the faint-hearted!Thank you Mike for your help. In my theme, I have both files, index.php and single.php
But none have the code you told me: <?php the_title( ‘<h3>’, ‘</h3>’ ); ?>
Here is what we find in the 2 files:
<strong>Index.php</strong> <?php get_header(); ?> <?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; // gets current page number ?> <?php if (is_home() && $paged < 2 && option::get('featured_enable') == 'on' ) { get_template_part('wpzoom', 'slider'); } // Featured Slideshow ?> <?php if (is_home() && $paged < 2 && option::get('carousel_enable') == 'on' ) { get_template_part('wpzoom', 'carousel'); } // Horizontal Carousel ?> <div id="content"> <?php if ( $paged < 2 && option::get('featured_art_show') == 'on') { // Featured Article get_template_part('featured', 'post'); } ?> <?php if ( $paged < 2 && option::get('featured_categories') == 'on') { // Home Categories get_template_part('featured', 'categories'); } ?> <?php if ( $paged > 1 || option::get('recent_posts') == 'on') { ?> <div class="archiveposts"> <h3><?php echo option::get('recent_title'); ?></h3> <?php global $query_string; // required /* Exclude categories from Recent Posts */ if (option::get('recent_part_exclude') != 'off') { if (count(option::get('recent_part_exclude'))){ $exclude_cats = implode(",-", (array) option::get('recent_part_exclude')); $exclude_cats = '-' . $exclude_cats; $args['cat'] = $exclude_cats; } } /* Exclude featured posts from Recent Posts */ if (option::get('hide_featured') == 'on') { $featured_posts = new WP_Query( array( 'post__not_in' => get_option( 'sticky_posts' ), 'posts_per_page' => option::get('slideshow_posts'), 'meta_key' => 'wpzoom_is_featured', 'meta_value' => 1 ) ); while ($featured_posts->have_posts()) { $featured_posts->the_post(); global $post; $postIDs[] = $post->ID; } $args['post__not_in'] = $postIDs; } $args['paged'] = $paged; if (count($args) >= 1) { query_posts($args); } ?> <?php get_template_part('loop'); ?> </div> <!-- /.archiveposts --> <?php } ?> </div> <!-- /#content --> <?php get_sidebar(); ?> <?php get_footer(); ?> <strong>single.php</strong> <?php get_header(); ?> <?php $template = get_post_meta($post->ID, 'wpzoom_post_template', true); ?> <div id="content"<?php if ($template == 'full') { echo " class=\"full-width\""; } ?>> <div id="post-<?php the_ID(); ?>" <?php post_class(''); ?>> <?php while (have_posts()) : the_post(); ?> <div class="meta"> <?php if (option::get('post_category') == 'on') { ?><?php the_category(', '); ?><?php } ?> <?php if (option::get('post_date') == 'on') { ?><?php if (option::get('post_category') == 'on') { ?> — <?php } ?><?php printf('%s at %s', get_the_date(), get_the_time()); ?><?php } ?> <span><?php edit_post_link( __('Edit this post', 'wpzoom'), ' ', ''); ?></span> </div> <h1 class="title"><a>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1> <?php if (option::get('post_author') == 'on') { ?><span class="author"><?php _e('by', 'wpzoom'); ?> <?php the_author_posts_link(); ?></span><?php } ?> <div class="entry"> <?php the_content(); ?> <div class="clear"></div> </div> <?php wp_link_pages( array( 'before' => '<div class="nextpage">' . __( 'Pages:', 'wpzoom' ) . '', 'after' => '</div>' ) ); ?> <div class="after-meta"> <?php if (option::get('post_tags') == 'on') { ?><?php the_tags( '<div class="tags_list">'. __('Tags ', 'wpzoom'). '', '', '</div>'); ?><?php } ?> <?php if (option::get('post_share') == 'on') { ?> <div class="share_box"> <h4><?php _e('Share:', 'wpzoom') ?></h4> <div class="share_btn"><a href="https://twitter.com/share">" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="https://platform.twitter.com/widgets.js"></script></div> <div class="share_btn"><iframe src="https://www.facebook.com/plugins/like.php?href=<?php echo urlencode(get_permalink($post->ID)); ?>&layout=button_count&show_faces=false&width=1000&action=like&font=arial&colorscheme=light&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:80px; height:21px;" allowTransparency="true"></iframe></div> <div class="clear"></div> </div> <?php } ?> </div> <?php if (option::get('post_authorbio') == 'on') { ?> <div class="post_author"> <?php echo get_avatar( get_the_author_meta('ID'), 70 ); ?> <span><?php _e('Author:', 'wpzoom'); ?> <?php the_author_posts_link(); ?></span> <?php the_author_meta('description'); ?> </div> <?php } ?> <div id="comments"> <?php if (option::get('post_comments') == 'on') { comments_template(); } ?> </div> <!--/ #comments --> <?php endwhile; wp_reset_query(); ?> </div> <!-- /.post --> </div><!-- /#content --> <?php if ($template != 'full') { get_sidebar(); } ?> <?php get_footer(); ?>
[Please be sure to use the code buttons or backticks when posting code on the forums]I hope this will help you to understand my problem. Thank you.
Forum: Plugins
In reply to: [Flickr Photo Post] Plugin doesn't workI tried to find a solution on the web, nothing work.
Forum: Plugins
In reply to: [Author Image] Not for novices or the faint-hearted!Hello Mike Koepke. I want to have the image of the author of a post at the beginning of the article.
As example, in this post, you have the name of the author, and I want the photo too: https://x-centricmodels.com/mag/?p=5461
Forum: Plugins
In reply to: [Author Image] Not for novices or the faint-hearted!I ve added <?php the_author_image();?> in the template of my theme, but it does nt work. I’m not really good to do this. I suppose it was not at the good place, but I’m confused
Forum: Plugins
In reply to: [Author Image] Not for novices or the faint-hearted!@mike Koepke
Upss no, but where in the template I must add this?
Forum: Plugins
In reply to: [Author Image] Not for novices or the faint-hearted!I have the same problem too. I just installed the plugin, upload pictures of administrators and authors, but the pictures don’t appear.
WP-content is set 777 as you ask in the plugin page. I use Magazinum as theme for my magazine. I use Firefox as browser and the cache was cleared.
WordPress version is 3.5.2
You can see here the latest article published: https://x-centricmodels.com/mag/?p=5461
Thank you for your help.