Home User profile
tagDiv Member
This user did not write anything. So we are just showing here some random text to make the profile page look nice :)
mboydnv
tagDiv Member

Sorry that didn’t fix it. Any other ideas?

mboydnv
tagDiv Member

All fixed with the Newspaper 6.4 to 6.51 patch update. I’m good.

mboydnv
tagDiv Member

Got an email from Envato to update to 4.74 of VC, So I downloaded it from your template and installed it. I’m running Newspaper 6.4 and it’s all messed up. Must I upgrade to template 6.5 for this to work, getting nervous with these updates, it always makes more trouble… what do i do?

Thanks

mboydnv
tagDiv Member

Is the css I did good? Or is there better code to render for devices?

mboydnv
tagDiv Member

I just don’t get it. Way too confusing.

I just made a custom field using ACF and called it, “blurb”, pasted in the text and added the code to td_module_11

<div class="blurb"><?php the_field('blurb', $this->post->ID); ?></div>

I then deleted

<div class="td-excerpt">
<?php echo $this->get_excerpt();?>
</div>

Would you be able to add this function into the next release? Excerpts are not good for SEO in my opinion. It’s just more duplicated copy on the home page and categories. Why not create fresh copy about your post for display?

mboydnv
tagDiv Member

Hi, I changed it out after I posted above. The white titles were indeed not showing p in the block.

=(

mboydnv
tagDiv Member

Ok, I’m all moved over from http to https. Hired a great developer off elance who delivered fast and perfect. anyone needs his name just hollar.

All looks good. yoast site maps, google analytics, updated google webmaster tools..etc. Hope I got it all.

https://p a r a d i s e f o u n d t o u r s (dot) c o m

mboydnv
tagDiv Member

[SOLVED]

Just needed to change the url in the theme admin panel/footer background to https. Easy fix.

=)

mboydnv
tagDiv Member

yoast has already generated my sitemap (post-sitemap.xml) with all my posts being https in it. So I’m nervous what will happen with my indexed pages in google already as http and not https.

mboydnv
tagDiv Member

Thanks Chris. Will remove:

# DISABLE SITEMAP INDEXING BY GOOGLE AND OTHERS
<IfModule mod_rewrite.c>
<Files ~ "^(post-sitemap.xml|category-sitemap.xml|sitemap_index.xml)\.xml$">
Header set X-Robots-Tag "noindex"
</Files>
</IfModule>

I was under the impression that this would keep the sitemap from being indexed in the engine, yet still be followed.

One last question that wasn’t answered. Will that affect my indexed pages in Google? They are 200+ indexed pages in there as www. ?

Cheers Chris!

mboydnv
tagDiv Member

Thanks Alin, that did the trick!

mboydnv
tagDiv Member

Will that affect my indexed pages in Google? They are 200+ indexed pages in there as www. ?

While I got you Chris, here’s my .htaccess file in the public_html directory. I’m thinking of removing the block to index sitemaps.

Do you see any other trouble with this? Thanks

RewriteCond %{HTTP_USER_AGENT} libwww-perl.*
RewriteRule .* ? [F,L]

RewriteCond %{HTTP_HOST} ^50\.28\.106\.21
RewriteRule (.*) http://www.mydomain.com/$1 [R=301,L]

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

# PROTECT WPCONFIG
<files wp-config.php>
order allow,deny
deny from all
</files>

# Enable Leverage Browser Caching
<IfModule mod_rewrite.c>
ExpiresActive On

# Favicon (cannot be renamed)
ExpiresByType image/x-icon "access plus 1 week"

# Media: images, video, audio
ExpiresByType audio/ogg "access plus 1 month"
ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/jpeg "access plus 1 month"
ExpiresByType image/png "access plus 1 month"
ExpiresByType video/mp4 "access plus 1 month"
ExpiresByType video/ogg "access plus 1 month"
ExpiresByType video/webm "access plus 1 month"

# CSS and JavaScript
ExpiresByType application/x-javascript "access plus 1 week"
ExpiresByType text/css "access plus 1 week"
ExpiresByType text/javascript "access plus 1 week"

# Webfonts
ExpiresByType application/vnd.ms-fontobject "access plus 1 month"
ExpiresByType application/x-font-ttf "access plus 1 month"
ExpiresByType application/x-font-woff "access plus 1 month"
ExpiresByType font/opentype "access plus 1 month"
ExpiresByType image/svg+xml "access plus 1 month"

</IfModule>
# End Leverage Browser Caching

# TYPES FIX
AddType text/css .css
AddType text/javascript .js

# Enable GZIP Compression
SetOutputFilter DEFLATE
AddOutputFilterByType DEFLATE text/html text/css text/plain text/xml text/javascript application/x-javascript application/x-httpd-php
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip
Header append Vary User-Agent env=!dont-vary
# End GZIP Compression

# DISABLE DIRECTORY BROWSING
Options All -Indexes

# PROTECT HTACCESS
<files ~ "^.*\.([Hh][Tt][Aa])">
order allow,deny
deny from all
satisfy all
</files>

# DISABLE SITEMAP INDEXING BY GOOGLE AND OTHERS
<IfModule mod_rewrite.c>
<Files ~ "^(post-sitemap.xml|category-sitemap.xml|sitemap_index.xml)\.xml$">
Header set X-Robots-Tag "noindex"
</Files>
</IfModule>

# FORBID COMMENT SPAMMERS ACCESS TO YOUR wp-comments-post.php FILE
# This is a better approach to blocking Comment Spammers so that you do not
# accidentally block good traffic to your website. You can add additional
# Comment Spammer IP addresses on a case by case basis below.
# Searchable Database of known Comment Spammers http://www.stopforumspam.com/

# BLACKLISTED USER AGENTS
SetEnvIfNoCase User-Agent "Acunetix" keep_out
SetEnvIfNoCase User-Agent "FHscan" keep_out
SetEnvIfNoCase User-Agent "Baiduspider" keep_out
SetEnvIfNoCase User-Agent "Yandex" keep_out
<Limit GET POST PUT>
order allow,deny
allow from all
deny from env=keep_out
</Limit>
# END BLACKLISTED USER AGENTS

mboydnv
tagDiv Member

That worked Bogdan! Many thanks!!

mboydnv
tagDiv Member

I created a field in Advanced Custom Fields plugin and tinkered with loop-single.php and added the code

<p><?php the_field('price'); ?></p>

And it showed up, Great! but that was just a test.

Could you please guided me where I can insert it after the excerpt on the blocks on my homepage (blocks 4 and 5) and of course the category and tag pages. Is that the archive template?

Also would you have any handy css code that I can play with and adjust the style, perhaps something to start me off with…

thank you so much!

mboydnv
tagDiv Member

oh, I have installed Advanced Custom Field and read the post: https://forum.tagdiv.com/topic/where-do-i-insert-advanced-custom-fields/

So where do insert for the blocks, after the excerpt appears?

thank you

mboydnv
tagDiv Member

I am using:

.single .td-post-date {
display:none;
}
.td_module_wrap .td-post-date {
display: none;
}

But it leaves a line of space where the date was;

title
date
text

the code does this

title

text

How do i make that css look like this:

title
text

thank you

mboydnv
tagDiv Member

I don’t want this either. Just another headache to deal with Google. Don’t need this on the page period. I got no reviews etc.

How do we remove it all together.

Why do we have to have this option on permanently? You have such an interface to decide whether or not we want a category tag on a block, yet we cannot decide with a simple option to turn this off.

Please….

mboydnv
tagDiv Member

I wanted that too, my work around was creating a menu widget of the tags/links.

mboydnv
tagDiv Member

I solved my problem with missing icons

https://forum.tagdiv.com/topic/missing-icons-2/#post-68771

I had anasty .htaccess file in the wp-content directory preventing loading of fonts.

mboydnv
tagDiv Member

also, remove the .htaccess file in the wp-content directory. That was a huge problem for me. Just discovered that after 2 years. I look forward to more improved rankings now that it is removed.

mboydnv
tagDiv Member

PROBLEM FIXED!!

The problem that was preventing (all icons) via the newspaper.woff, newspaper.tff font files from loading on my site (travel theme 6.4 template) was:

.htaccess file in the wp-content directory with the following code:

Order deny,allow
Deny from all
<Files ~ ".(xml|css|jpe?g|png|gif|js)$">
Allow from all
</Files>

I apologize for being so frustrated over this. It really consumed tremendous amounts of my time to trouble shoot.

I hope this helps someone in the future to check for additional .htaccess files in their directories.

I deleted the .htaccess file from that directory and all is well.

  • This reply was modified 10 years by mboydnv. Reason: additional edit
mboydnv
tagDiv Member

I have the same problem missing icons link

I believe the problem is in the settings when upgrading from earlier versions. A clean install works but I cannot do undo the install unless they specify where their tables and fields landed in my DB….

I’m screwed, the only option is to give ftp access, which I am working on…

mboydnv
tagDiv Member

already had the following in my .htaccess.

# Webfonts
ExpiresByType application/vnd.ms-fontobject "access plus 1 month"
ExpiresByType application/x-font-ttf "access plus 1 month"
ExpiresByType application/x-font-woff "access plus 1 month"
ExpiresByType font/opentype "access plus 1 month"
ExpiresByType image/svg+xml "access plus 1 month"

Let’s keep in mind it happened when updating 4.5d to 6.4 using the script too. this did not happen with a clean install. So there is some old stuff in the DB that is stopping the query.

I don’t understand it all, and this 7? at the end of newspaper.woff is puzzling…

any other ideas? please?

mboydnv
tagDiv Member

Bogdan,

My problem is NOT with the files. FTP will not help you.

What about the update script and bad code in the DB as mentioned above? How is FTP gonna trouble shoot that? You need the sql of the DB

mboydnv
tagDiv Member

something is not handling the query correctly for ?7

getting 404 that includes ?7 at the end of the file name in the DB

the 404 is mentioning them. the Db should be taking the ?7 off when rendering….???

Viewing 25 posts - 26 through 50 (of 76 total)