samitr
Forum Replies Created
-
Forum: Plugins
In reply to: [TreePress - Easy Family Trees & Ancestor Profiles] Root Id is Required.Hello I responded to your email on 6 May with the login details. When will I hear from you?
Forum: Plugins
In reply to: [TreePress - Easy Family Trees & Ancestor Profiles] Root Id is Required.Hello, How do I privately share the credentials?
Also… what all is required? Login URL, username and password for the wordpress?Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Plugin not workingI never did figure it out. Figured it was not worth the trouble (may have caused other issues) and am doing the shift manually.
I managed to get multiple spouse to show correctly (works only when spouses are not displayed vertically… then there are display issues with connector lines).
Problem is the connector lines do not indicate which spouse the offsring is from.
Forum: Plugins
In reply to: [TreePress - Easy Family Trees & Ancestor Profiles] Features and costThen please provide a toggle to disable the placeholder image.
Forum: Plugins
In reply to: [TreePress - Easy Family Trees & Ancestor Profiles] Features and costThanks Irfan,
Does it not ask to update automatically? It did not show a update available info showed the latest build. However, when I deleted the existing and re-downloaded, its working fine now. Thanks.
Can you give free users an option to display pics or at least switch off the placeholder images in options? its a waste of space.
Thanks
SamitForum: Plugins
In reply to: [TreePress - Easy Family Trees & Ancestor Profiles] Features and costThank you Irfan,
The issue with display on smartphone still persists. I have the latest version running and still cannot pan to the left on the phone. Was it only solved for the premium version?
Thanks
SamitThank you. That worked ??
Hi davidr90. Thank you for your response.
Yes the portfolio post I am guessing is from the theme (or an additional plugin to the theme more likely). I did not try switching themes as it would mess up things.
I looked online and found a bit of code that should go into functions.php… as below:
// Add theme support for Featured Images
add_theme_support(‘post-thumbnails’, array(
‘post’,
‘page’,
‘portfolio’,
‘custom-post-type-name’,
));I simply added this using a plugin called Code Snippets, and all is working well for now.
Does this help?
Best wishes.
SamitForum: Fixing WordPress
In reply to: Featured Images disappearedThank you so much t-p.
Not sure which it relates to, so will probably ask both.
I however think it has something to do with the WordPress 5.4 update.
Thanks again.Forum: Fixing WordPress
In reply to: Format text on posts imported into static HTML pageThanks a ton again.
Forum: Fixing WordPress
In reply to: Format text on posts imported into static HTML pageHi Mpwassler,
Thanks again.It kind of worked. But not completely. I managed to have the heading link to the main entry, but somehow it is not taking in all the styling correctly. The h4 and h5 styles have been ignored.
Also, there is no gap (vertical space) between entries. How do I do that? And how do I remove the (…) after each entry? I assume I do not need it. Shall I just delete it from the code?
Forum: Fixing WordPress
In reply to: Format text on posts imported into static HTML pageThank you so much. I will try it in a while and let you know ??
Forum: Fixing WordPress
In reply to: Format text on posts imported into static HTML pageOk what I have done is:
On my html I have inserted an iframe. The file that the iframe refers to has the following script:<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = “//connect.facebook.net/en_GB/all.js#xfbml=1”;
fjs.parentNode.insertBefore(js, fjs);
}(document, ‘script’, ‘facebook-jssdk’));</script>
<DIV ID=”datacontainer” STYLE=”Position : Absolute ; Left : 0px ; Top : 0px ; Width : 100%” onMouseOver=”scrollspeed=0″
onMouseOut=”scrollspeed=cache”>
<!– ADD YOUR SCROLLER CONTENT INSIDE HERE –>
<div id=”voodooBlog”>
<?php while (have_posts()): the_post(); ?>
<div class=”dateIcon”>
<h5><?php the_time(‘M’); ?></h5>
<p><?php the_time(‘j’); ?></p>
</div>
<div class=”text”>
<h4><?php the_title(); ?></h4>
<?php the_excerpt(); ?>
<p></p>
“>Read More…
</div><?php endwhile; ?>
</div>
<!– END SCROLLER CONTENT –>
</DIV>
<P><SCRIPT type=”text/javascript”>/***********************************************
* IFRAME Scroller script- ? Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at https://www.dynamicdrive.com/ for full source code
***********************************************///Specify speed of scroll. Larger=faster (ie: 5)
var scrollspeed=cache=1//Specify intial delay before scroller starts scrolling (in miliseconds):
var initialdelay=500function initializeScroller(){
dataobj=document.all? document.all.datacontainer : document.getElementById(“datacontainer”)
dataobj.style.top=”5px”
setTimeout(“getdataheight()”, initialdelay)
}function getdataheight(){
thelength=dataobj.offsetHeight
if (thelength==0)
setTimeout(“getdataheight()”,10)
else
scrollDiv()
}function scrollDiv(){
dataobj.style.top=parseInt(dataobj.style.top)-scrollspeed+”px”
if (parseInt(dataobj.style.top)<thelength*(-1))
dataobj.style.top=”5px”
setTimeout(“scrollDiv()”,40)
}if (window.addEventListener)
window.addEventListener(“load”, initializeScroller, false)
else if (window.attachEvent)
window.attachEvent(“onload”, initializeScroller)
else
window.onload=initializeScroller</SCRIPT>
Forum: Fixing WordPress
In reply to: Format text on posts imported into static HTML pageOh I will have to check. Will need a while.