dsntlt
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Mediaphase Lite] How to copy main page to other pagesYou have to edit the template file : inc/partials/content-home-news.php
Around line 57 , delete this bit
<p class="newsauthor"><?php _e( 'Posted By', 'mediaphase-lite' ); ?> <a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" class="authorname"><?php the_author(); ?></a></p>and below delete this one:
<li class="newstime"><i class="fa fa-clock-o"></i> <?php mediaphase_posted_ago( get_the_date( 'c' ), get_permalink() ); ?></li>Let me know if that works out.
BTW, if you like the theme – please rate it 🙂
Thanks!Forum: Themes and Templates
In reply to: [Mediaphase Lite] How to copy main page to other pagesHi,
For the #1 you will need to create a template in the theme folder. Name it template-front-page.php for example, and the file contents should be as here – http://pastebin.com/pwx46Z3n , then creating a page select this template.
For #2 – color customizations aren’t available in the free version, you need to get the full one for it.
Hope it helps
Hi,
That’s one way to do it – the ID is hardcoded, but if you’re not going to need other pages to show up in that template instead – leave it there 🙂
Other way would be to have a widget that you configure in wp-admin, and then you could change the page you’re embedding anytime you want.
To sum up – if this is the only place you need it, leave the code you have, it’s fine. If you need more pages embedded (or change the pages you embed frequently), then creating a widget would be the better choice.
Hope that helps
Hi,
What if you used small features for that (you would need to reenter the text)?
If not, you need to modify the original template and include the page content you need, I can provide the snippet later.Let me know what you think?
Forum: Themes and Templates
In reply to: [Mediaphase Lite] Home Page Hero Banner ImageCan you provide URL to site? Did you replace your current inc/themesetup.php with the one I posted above (contents from pastebin)?
Possible with CSS hack – set the background for the actual image in the center (img.mainfeaturesimage), like so:
.mainfeaturesimage { background: url(http://path.to.image) no-repeat; padding-top: 200px; }so the original image will be shifted down, and background will stay in place of the original image.
Forum: Themes and Templates
In reply to: [Mediaphase Lite] Main features widgetsHi,
No way to do it using customizer.
What you can do is override them with your own CSS. To do that, you should do the following:1. In the widget, where you set the “icon”, give it some distinguishing name, let’s say “image-left-1”.
2. In styles.css, add the following code:.fa.image-left-1::before { content: ''; } .fa.image-left-1 { background: url(http://url/to/your/image.png) no-repeat; width: 50px; height: 50px; }Change the url to your path, change width/height of the image as per your design.
Forum: Themes and Templates
In reply to: [Mediaphase Lite] Static HomepageGlad to hear that 🙂
Good luck!Forum: Themes and Templates
In reply to: [Mediaphase Lite] Home Page Hero Banner ImageI can’t see your email from profile info.
In the mean time, http://pastebin.com/WwkCLCn6 – this is the inc/themesetup.php file contents.Let me know if that helps
Forum: Themes and Templates
In reply to: [Mediaphase Lite] Static HomepageHi,
Can you provide a link to the website? It’s hard to tell what might be wrong.
Forum: Themes and Templates
In reply to: [Mediaphase Lite] Navigation collapsed on mobile by defaultHi,
Go to inc/js/script.js, line 49, and comment out (or remove) the following code:
if ($(window).width() > 768) { cssmenu.find('ul').show(); }This expands the menu by default on larger screen sizes.
Hope that helps!
Forum: Themes and Templates
In reply to: [Mediaphase Lite] load on scrollYes, it is, but only by modifying the styles.css file, currently we have no option in customizer to do so.
In styles.css, go to line 79, it has
.hideme { opacity: 0; }change the opacity to 1:
.hideme { opacity: 1; }save the styles.css file and you’re good to go.
Forum: Themes and Templates
In reply to: [Mediaphase Lite] Home Page Hero Banner ImageI can send the updated file for you to use (need to replace the original one) or you can wait for the theme update
Forum: Themes and Templates
In reply to: [Mediaphase Lite] Issue with Customize tool and Hero bannerHey,
Fixed the issue. It will be available with the updated version of the theme. I can send you the updated file to use in the mean time.
Forum: Themes and Templates
In reply to: [Mediaphase Lite] Home Page Hero Banner ImageThanks for the notice, fixed. Will be available with updated version