Just began using this theme (Elicit) and found it straightforward, until checking on mobile and tablet. The hamburger menu doesn’t work. What to do?
]]>The Header Image is repeating. I tried to upload the perfect size of 1280×150 and also tried 1280×180 – the result stays the same on https://www.promomasters.at/blog/
]]>Please i want to remove post info in my ellicit theme and leave only date. I need your help thank you.
Your Theme is the best.
Hey, I have changed fonts in CSS and that bootstrap file. I have also imported link from Google fonts into my header.php
<link href=”https://fonts.googleapis.com/css?family=Roboto” rel=”stylesheet”>
file and into my custom CSS.
@import url('https://fonts.googleapis.com/css?family=Roboto&subset=latin-ext');
The CSS on page says it is Roboto, but it is still some default font. What should I do with this problem?
The site:
https://martinpodlesak.com/
Thanks for help!
]]>Greetings,
Thanks for your help on my category navigation question.Just to preface my question, I am using a child theme of the Elicit theme, have changed it quite a bit and am asking for help on a custom post type “single” page. I thought I would start by asking for help here, even if this is beyond the scope of your assistance.
That said, this is one of many of the single pages for my small_business
custom post types: https://scasbog.raddaddesign.com/small_business/general-contractor/
It uses most of the structure of Elicit’s single.php
file. The main difference is that the content is created by two Advanced Custom Fields WYSWYG text fields instead of the main visual editor.
I was able to set up categories and tags on my small_business
custom post type and both work fine in the editor:
The categories display fine as seen in the text “Business type: Contracting & Repair”
The tags on the other hand don’t display at all. I added my own text to the div tag with the .post-tag
class to be sure it wasn’t hidden in any way:
<div class="post-tag">
The tags should be showing up here.<?php the_tags(__('Tags', 'elicit') . ' ', ' ', ' '); ?>
</div>
My text shows up but not the tags associated with the post.
Any idea how I can resolve this?
<hr />
The code for my small_business custom post type is below in case you spot a problem:
<?php
/*
Plugin Name: Stratford Small Business
Plugin URI: https://www.markhannondesign.com/
Description: Declares a plugin that will create a custom post type displaying small business profiles.
Version: 1.0
Author: Mark Hannon
Author URI: https://www.markhannondesign.com/
License: GPLv2
*/
?>
<?php
add_action( 'init', 'create_small_business' );
function create_small_business() {
register_post_type( 'small_business',
array(
'labels' => array(
'name' => 'Small Businesses',
'singular_name' => 'Small Business',
'description' => __( 'This post type is for the creation and display of small businesses on the SCASBG web site' ),
'add_new' => 'Add New',
'add_new_item' => 'Add New Small Business',
'edit' => 'Edit',
'edit_item' => 'Edit Small Business',
'new_item' => 'New Small Business',
'view' => 'View',
'view_item' => 'View Small Business',
'search_items' => 'Search Small Businesses',
'not_found' => 'No Small Businesses found',
'not_found_in_trash' => 'No Small Businesses found in Trash',
'parent' => 'Parent Small Business',
'show_ui' => true,
'show_in_menu' => true,
'show_in_admin_bar' => true,
'featured_image' => __( 'Featured Image' ),
'set_featured_image' => __( 'Set featured image' ),
'remove_featured_image' => __( 'Remove featured image' ),
),
'public' => true,
'menu_position' => 15,
'supports' => array( 'title', 'editor', 'comments', 'thumbnail', 'custom-fields' ),
'taxonomies' => array( 'category' ),
'menu_icon' => 'dashicons-store',
'has_archive' => true
)
);
register_taxonomy('tag','small_business',array(
'hierarchical' => false,
'labels' => $labels,
'show_ui' => true,
'update_count_callback' => '_update_post_term_count',
'query_var' => true,
'rewrite' => array( 'slug' => 'tag' ),
));
}
?>
]]>
Greetings. I created a child theme of the Elicit theme for a small business association. I then created a custom post type named “small_business” to display the member pages which uses a template I created from single.php
. Here is an example: https://scasbog.raddaddesign.com/small_business/placeholder-business-1
Each of these businesses is going to be in one or more categories. The text under the page title, “Business type: Business & Personal Services” displays the category.
I would like to limit the posts navigation under the content to only posts in the current category.
The navigation code on the single.php is different than the WordPress codex.
How do I change the code below to limit the post navigation to the current category?
<?php wp_link_pages( ); ?>
<?php if ($prev_link || $next_link): ?>
<div class="navigation" >
<div class="singleright">
<p><?php esc_html_e('Next-> ', 'elicit'); ?><strong><?php echo $prev_link; ?></strong></p>
</div>
<div class="singleleft">
<p><strong><?php echo $next_link; ?></strong><?php esc_html_e(' <-Previous', 'elicit'); ?></p>
</div>
</div>
<?php endif; ?>
Thanks
]]>I’m running into issues changing the color of the menu. I’ve updated the style sheet but to no avail. Suggestions?
]]>I installed Elicit Theme, and liked the design. But how can I put a summary of posts on the homepage? I refer to this effect.
]]>Are there instructions on how would you create a child theme from Elicit? I tried to do this, but it doesn’t pull in any of the bootstrap CSS.
]]>I have uploaded the logo but i can only see a white header. When i hover over the logo, the pointer turns into thumb pointer. That means the logo is there but it is not showing. Please help!
]]>Tetemu bought for $ 43 which on small displays (tablet, phone), nothing works. The problem will be solved? The problem is solved? I dearly my time.
]]>Hi,
When viewing my site on a mobile device the search box overlays all of the content, I see that this was fixed on Elicit but it seems the Pro theme is still at version 1.0.0
Do you have an update available please?
Regards
DC
Love the theme. However, on my mobile device the popular posts widgets is overlaying the entire page so you cannot see the content. Also, my logo and header images cannot be seen after I upload them.
I appreciate your time on this.
]]>Hey, theme is looking good!
I need some help hiding the post date, posted by, category etc right below the post title.
Also, how do I post full images instead of text posts? Like 9gag has.
Thanks