Search Results for 'amp'

Results from the Forum
Jeni
tagDiv Member

Hi Alin,

Sorry for the delay, I have been traveling. Thank you for the links.
I added the image to the image library and i followed the link structure in the directions, but something is wrong. When I try to add the image it breaks the site and shows nothing but my background image.

I tried to add the link with code exactly as it appears in association with the image in the media section. I also tried replacing my domain with localhost like in the example you linked to like this…

What am I missing?

simchris
tagDiv Member
mpindado
tagDiv Member

Hi, just some thoughts (kinda busy this week…),

– Is it suitable for you to have a direct conversion from 0-5 in 0.5 steps to 0-20? (0=>0, 0.5=>2, 1=>4,1.5=>6….) In this case you could only review even values on the 0-20 scale.

Then, you could add save_post action in your child theme and check whether a review exists, do the conversion, and store the result in a convenient way as a post_meta.
Please note td review meta is an array so if you want to extract the values from the database, you would have to do it with a php script or similar but, if you store your own meta value, then this value can already be a number, and this will be easier.

to summarize:

add_action ('save_post','test_save_post',10,3);
function test_save_post ($post_id, $post, $update )
{
if (isset ($_POST['td_review']) && isset ($_POST['td_review']['p_review_stars']) &&
count ($_POST['td_review']['p_review_stars'])){
$my_value = $_POST['td_review']['p_review_stars'][0]['rate']*4;
update_post_meta ($post_id,'my_review',$my_value);// got even 0-20 numbers in 'my_review' meta. select post_id,meta_value from wp_postmeta where meta_key = 'my_review'
}
}

If you check your meta table, you will see a new meta attached to the post with your review.

– No way, I need the odd numbers from 0 to 20. There are several alternatives here, some involving php code and other javascript code but it gets more difficult than previous approach. To avoid waste both your and my time, if you are interested, reply to this post and I will give you some hints.

regards

debarup
tagDiv Member

Hi,
I am using this plugin http://scott.yang.id.au/pages/permalink-redirect.html

can you please let me know if it is working fine at there or not?

Note: It was not working perfectly when the W3 Total Cache plugin – Page cache option was in Disk Enhanced mode. But when I have changed it to Disk: Basic, it is working fine.

Thanks & Regards
Debarup

Alin [tagDiv]
tagDiv Staff

Hi,

You can try to place your code in “Article bottom ad” so I can inspect this and try to provide you a css solution for that space.
Also if you wnat to place your ad bellow share button like in your example you can try to paste your code in a custom ad and use do_shortcode function to display it after bottom social share – http://screencast.com/t/2EynJrxz

<?php echo do_shortcode('[td_block_ad_box spot_id="custom_ad_1"]');?>

Result: http://screencast.com/t/b1AiHmv0T3

Hope this helps!

Alin [tagDiv]
tagDiv Staff

Hi,

Unfortunately theme doesn’t have an option to change the content background. You can do this via custom css in Theme Panel > Custom Css: http://screencast.com/t/QVZNKNstYy but have to do more customizations there for example in post page few elements have a different background and you need to change it also with css code- http://screencast.com/t/Z4r2sAQco6T
Also some widget text color(if you need another color) have to be changed as you can see – http://screencast.com/t/o4buIRkx7
You will need custom work for this and if you don’t have css/html experience I suggest to hire a professional to do this for you as we cannot offer custom work for the moment, sorry.

About you issue with logo issue please provide more details and your site url so we can take a look.

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Newsticker block is included only in Newsmag theme, but we’re also working on a major update for Newspaper (v5.0) which will include most of the features from Newsmag like smart sidebar feature,smart lists or some of the post templates. You can take a look on our demo to make an idea about blocks that are included(and how they look on columns), post samples… – http://demo.tagdiv.com/newspaper/ and also our documentation may help – https://forum.tagdiv.com/newspaper-documentation/
Also the latest theme version is 4.6.3 which includes Visual Composer plugin(4.4.4) in /plugins folder. If you want to update please follow this guide and use FTP method – https://forum.tagdiv.com/how-to-update-the-theme/
If you cannot see all blocks available to be added using Visual Composer please make sure that all of them are selected from settings and save – http://screencast.com/t/9TCvIFaa

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Yes, you can display it using custom css as the top menu was not designed for mobile devices that’s why is hidden.
You can add this custom css to display it also on mobiles but you may need some additional customizations for menu items that may drop on more rows – http://screencast.com/t/rHnQKiUT

.td-header-menu-wrap {
display: block !important;
}

A solution will be to hide some top menu elements(if you want only menu to be visible) using media queries – http://screencast.com/t/E7jiGxvPO6Co – this is an example

@media (max-width: 767px){
.td-header-menu-wrap {
display: block !important;
}
.td-header-menu-wrap .td_data_time, .td-header-menu-wrap .td-social-wrap, .td_ul_login {
display: none;
}
}

Thanks!

msproductions
Participant
#0

Hello, how can I change the color so that everything appears to have a black background?
Pages, posts, etc.

I see the option to change the “background” color (Theme Panel > Theme Color), but within the body all content seems to be placed on top a white background.

Also, it appears the bottom portion of my logo is cropped in mobile. Is this normal? Is there a setting I can adjust to prevent this from happening?

Thank you,

WakeUpCallProject
Participant
#0

Hi there,

Am looking to put ads under the article.

For example this is a current article using NewsMag theme:
http://www.tntreport.com/sweden-cuts-rates-below-zero-launches-qe/

But I want to be able to place ads like in this where it says “What’s Popular Now”:
http://www.hangthebankers.com/mcdonalds-food-destroys-gut-health-in-10-days/

To place the ad it uses simple javascript.

If I place it with the “Article Bottom Ad” it places it inside the article and leaves a massive space between it and the end of the post.

Can you please help?
Having OutBrain and Taboola type ads is very common so I’m assuming I’m not the first to ask.

Thanks in advance,
TNT report

modernmavens
tagDiv Member

Hi,

Sorry, I ran into another issue.

Yoast SEO Titles &amp; Metas no longer editable and the WordPress SEO meta box is no where to be found on page or post. It only appears when I change the setting in Reading > Your Latest Post.
http://www.awesomescreenshot.com/image/236423/ae9c708e2e46d566f0cadc81e1c7a68f

I tried to search for the solution from previous topics and there was none. No one seems to face this issue.

Thanks.

krizdabz
Participant
#0

Hello!

We’ve purchased Newspaper 4 theme, but there is a small hiccup. After a year of operation site has become unbearably slow on relatively powerful hardware and with relatively modest load (70 concurrent users).

We have accumulated about 5 thousand articles most of which are in a single category, though we are using tags (which causes another funny side effect – thousands of cache update operations through terms_cache almost on each request).

Nevertheless, I have to give you a baseline. We’ve changed hardware over time in search of performance, so to be totally syre, we set up an empty virtual box (4GB TAM, 2 core CPU, 60GB SSD on DigitalOcean), simple LAMP server, a copy of our site and even then we were unable to get pageloads under a second (though all other plugins were enabled).

Next move was obvious and as follows (ensuring nothing beyond content, Newspaper theme and Visual Composer is present within installation):

a) Set up a new WordPress instance.
b) Populate content from production site (use wp-cli to update all links).
c) Add default Newspaper 4 theme and its default child theme, select latter as site theme.
d) Install visual composer (as recommended by theme).
d) Enable everything and set a few things up, so menus and category pages are as in production.

As a result all pages are being generated in approx. 1 second (1.09±0.13s; out of 100 measurements; page generation time), which is obviously not good enough, since under even moderate load and because of other plugins which are essential to site this time tends to grow.

What are your recommendations to gain significant performance improvements? Of course, enabling w3 total cache solves this problem for unauthenticated users, but we heavily rely on authenticated ones, so an advice would help.

debarup
tagDiv Member

This is my htaccess code

=================================================

# ———————————————————————-
# CORS-enabled images (@crossorigin)
# ———————————————————————-
# Send CORS headers if browsers request them; enabled by default for images.
# developer.mozilla.org/en/CORS_Enabled_Image
# blog.chromium.org/2011/07/using-cross-domain-images-in-webgl-and.html
# hacks.mozilla.org/2011/11/using-cors-to-load-webgl-textures-from-cross-domain-images/
# wiki.mozilla.org/Security/Reviews/crossoriginAttribute
<IfModule mod_setenvif.c>
<IfModule mod_headers.c>
# mod_headers, y u no match by Content-Type?!
<FilesMatch “\.(gif|png|jpe?g|svg|svgz|ico|webp)$”>
SetEnvIf Origin “:” IS_CORS
Header set Access-Control-Allow-Origin “*” env=IS_CORS
</FilesMatch>
</IfModule>
</IfModule>
# ———————————————————————-
# Webfont access
# ———————————————————————-
# Allow access from all domains for webfonts.
# Alternatively you could only whitelist your
# subdomains like “subdomain.example.com”.
<IfModule mod_headers.c>
<FilesMatch “\.(ttf|ttc|otf|eot|woff?|font.css|css)$”>
Header set Access-Control-Allow-Origin “*”
</FilesMatch>
</IfModule>

RewriteEngine on

# BEGIN W3TC Browser Cache
<IfModule mod_mime.c>
AddType text/css .css
AddType text/x-component .htc
AddType application/x-javascript .js
AddType application/javascript .js2
AddType text/javascript .js3
AddType text/x-js .js4
AddType text/html .html .htm
AddType text/richtext .rtf .rtx
AddType image/svg+xml .svg .svgz
AddType text/plain .txt
AddType text/xsd .xsd
AddType text/xsl .xsl
AddType text/xml .xml
AddType video/asf .asf .asx .wax .wmv .wmx
AddType video/avi .avi
AddType image/bmp .bmp
AddType application/java .class
AddType video/divx .divx
AddType application/msword .doc .docx
AddType application/vnd.ms-fontobject .eot
AddType application/x-msdownload .exe
AddType image/gif .gif
AddType application/x-gzip .gz .gzip
AddType image/x-icon .ico
AddType image/jpeg .jpg .jpeg .jpe
AddType application/json .json
AddType application/vnd.ms-access .mdb
AddType audio/midi .mid .midi
AddType video/quicktime .mov .qt
AddType audio/mpeg .mp3 .m4a
AddType video/mp4 .mp4 .m4v
AddType video/mpeg .mpeg .mpg .mpe
AddType application/vnd.ms-project .mpp
AddType application/x-font-otf .otf
AddType application/vnd.ms-opentype .otf
AddType application/vnd.oasis.opendocument.database .odb
AddType application/vnd.oasis.opendocument.chart .odc
AddType application/vnd.oasis.opendocument.formula .odf
AddType application/vnd.oasis.opendocument.graphics .odg
AddType application/vnd.oasis.opendocument.presentation .odp
AddType application/vnd.oasis.opendocument.spreadsheet .ods
AddType application/vnd.oasis.opendocument.text .odt
AddType audio/ogg .ogg
AddType application/pdf .pdf
AddType image/png .png
AddType application/vnd.ms-powerpoint .pot .pps .ppt .pptx
AddType audio/x-realaudio .ra .ram
AddType application/x-shockwave-flash .swf
AddType application/x-tar .tar
AddType image/tiff .tif .tiff
AddType application/x-font-ttf .ttf .ttc
AddType application/vnd.ms-opentype .ttf .ttc
AddType audio/wav .wav
AddType audio/wma .wma
AddType application/vnd.ms-write .wri
AddType application/font-woff .woff
AddType application/vnd.ms-excel .xla .xls .xlsx .xlt .xlw
AddType application/zip .zip
</IfModule>
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType text/css A31536000
ExpiresByType text/x-component A31536000
ExpiresByType application/x-javascript A31536000
ExpiresByType application/javascript A31536000
ExpiresByType text/javascript A31536000
ExpiresByType text/x-js A31536000
ExpiresByType text/html A3600
ExpiresByType text/richtext A3600
ExpiresByType image/svg+xml A3600
ExpiresByType text/plain A3600
ExpiresByType text/xsd A3600
ExpiresByType text/xsl A3600
ExpiresByType text/xml A3600
ExpiresByType video/asf A31536000
ExpiresByType video/avi A31536000
ExpiresByType image/bmp A31536000
ExpiresByType application/java A31536000
ExpiresByType video/divx A31536000
ExpiresByType application/msword A31536000
ExpiresByType application/vnd.ms-fontobject A31536000
ExpiresByType application/x-msdownload A31536000
ExpiresByType image/gif A31536000
ExpiresByType application/x-gzip A31536000
ExpiresByType image/x-icon A31536000
ExpiresByType image/jpeg A31536000
ExpiresByType application/json A31536000
ExpiresByType application/vnd.ms-access A31536000
ExpiresByType audio/midi A31536000
ExpiresByType video/quicktime A31536000
ExpiresByType audio/mpeg A31536000
ExpiresByType video/mp4 A31536000
ExpiresByType video/mpeg A31536000
ExpiresByType application/vnd.ms-project A31536000
ExpiresByType application/x-font-otf A31536000
ExpiresByType application/vnd.ms-opentype A31536000
ExpiresByType application/vnd.oasis.opendocument.database A31536000
ExpiresByType application/vnd.oasis.opendocument.chart A31536000
ExpiresByType application/vnd.oasis.opendocument.formula A31536000
ExpiresByType application/vnd.oasis.opendocument.graphics A31536000
ExpiresByType application/vnd.oasis.opendocument.presentation A31536000
ExpiresByType application/vnd.oasis.opendocument.spreadsheet A31536000
ExpiresByType application/vnd.oasis.opendocument.text A31536000
ExpiresByType audio/ogg A31536000
ExpiresByType application/pdf A31536000
ExpiresByType image/png A31536000
ExpiresByType application/vnd.ms-powerpoint A31536000
ExpiresByType audio/x-realaudio A31536000
ExpiresByType image/svg+xml A31536000
ExpiresByType application/x-shockwave-flash A31536000
ExpiresByType application/x-tar A31536000
ExpiresByType image/tiff A31536000
ExpiresByType application/x-font-ttf A31536000
ExpiresByType application/vnd.ms-opentype A31536000
ExpiresByType audio/wav A31536000
ExpiresByType audio/wma A31536000
ExpiresByType application/vnd.ms-write A31536000
ExpiresByType application/font-woff A31536000
ExpiresByType application/vnd.ms-excel A31536000
ExpiresByType application/zip A31536000
</IfModule>
<IfModule mod_deflate.c>
<IfModule mod_headers.c>
Header append Vary User-Agent env=!dont-vary
</IfModule>
AddOutputFilterByType DEFLATE text/css text/x-component application/x-javascript application/javascript text/javascript text/x-js text/html text/richtext image/svg+xml text/plain text/xsd text/xsl text/xml image/x-icon application/json
<IfModule mod_mime.c>
# DEFLATE by extension
AddOutputFilter DEFLATE js css htm html xml
</IfModule>
</IfModule>
<FilesMatch “\.(css|htc|less|js|js2|js3|js4|CSS|HTC|LESS|JS|JS2|JS3|JS4)$”>
<IfModule mod_headers.c>
Header set Pragma “public”
Header append Cache-Control “public”
Header set X-Powered-By “W3 Total Cache/0.9.4.1”
</IfModule>
</FilesMatch>
<FilesMatch “\.(html|htm|rtf|rtx|svg|svgz|txt|xsd|xsl|xml|HTML|HTM|RTF|RTX|SVG|SVGZ|TXT|XSD|XSL|XML)$”>
<IfModule mod_headers.c>
Header set Pragma “public”
Header append Cache-Control “public”
Header set X-Powered-By “W3 Total Cache/0.9.4.1”
</IfModule>
</FilesMatch>
<FilesMatch “\.(asf|asx|wax|wmv|wmx|avi|bmp|class|divx|doc|docx|eot|exe|gif|gz|gzip|ico|jpg|jpeg|jpe|json|mdb|mid|midi|mov|qt|mp3|m4a|mp4|m4v|mpeg|mpg|mpe|mpp|otf|odb|odc|odf|odg|odp|ods|odt|ogg|pdf|png|pot|pps|ppt|pptx|ra|ram|svg|svgz|swf|tar|tif|tiff|ttf|ttc|wav|wma|wri|woff|xla|xls|xlsx|xlt|xlw|zip|ASF|ASX|WAX|WMV|WMX|AVI|BMP|CLASS|DIVX|DOC|DOCX|EOT|EXE|GIF|GZ|GZIP|ICO|JPG|JPEG|JPE|JSON|MDB|MID|MIDI|MOV|QT|MP3|M4A|MP4|M4V|MPEG|MPG|MPE|MPP|OTF|ODB|ODC|ODF|ODG|ODP|ODS|ODT|OGG|PDF|PNG|POT|PPS|PPT|PPTX|RA|RAM|SVG|SVGZ|SWF|TAR|TIF|TIFF|TTF|TTC|WAV|WMA|WRI|WOFF|XLA|XLS|XLSX|XLT|XLW|ZIP)$”>
<IfModule mod_headers.c>
Header set Pragma “public”
Header append Cache-Control “public”
Header set X-Powered-By “W3 Total Cache/0.9.4.1″
</IfModule>
</FilesMatch>
# END W3TC Browser Cache
# BEGIN W3TC Page Cache core
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP:Accept-Encoding} gzip
RewriteRule .* – [E=W3TC_ENC:_gzip]
RewriteCond %{HTTP_COOKIE} w3tc_preview [NC]
RewriteRule .* – [E=W3TC_PREVIEW:_preview]
RewriteCond %{REQUEST_METHOD} !=POST
RewriteCond %{QUERY_STRING} =””
RewriteCond %{REQUEST_URI} \/$
RewriteCond %{HTTP_COOKIE} !(comment_author|wp\-postpass|w3tc_logged_out|wordpress_logged_in|wptouch_switch_toggle) [NC]
RewriteCond “%{DOCUMENT_ROOT}/wp-content/cache/page_enhanced/%{HTTP_HOST}/%{REQUEST_URI}/_index%{ENV:W3TC_PREVIEW}.html%{ENV:W3TC_ENC}” -f
RewriteRule .* “/wp-content/cache/page_enhanced/%{HTTP_HOST}/%{REQUEST_URI}/_index%{ENV:W3TC_PREVIEW}.html%{ENV:W3TC_ENC}” [L]
</IfModule>
# END W3TC Page Cache core
# 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

RewriteCond %{HTTP_HOST} ^topfivebuzz\.mayanz\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.topfivebuzz\.mayanz\.com$
RewriteRule ^/?$ “http\:\/\/www\.topfivebuzz\.com” [R=301,L]

Options -Indexes

====================================================

awtown
Participant
#0

I’m building the homepage with Visual Composer using blocks. For some reason, the fonts on the homepage won’t change.

I can go into the Theme Panel and select the fonts for the Module and Blocks Article Titles just fine and the title fonts change. That works.

Then, I’ll go to Post Content and select the font. That changes the font on the post pages themselves, but not on the homepage.

So for example, for Blocks 4 and 11 they have titles and then below the titles. The title fonts can be changed, but the text below the titles won’t change on the homepage.

What am I missing? Thanks,

DianeFoley
tagDiv Member

A little more info: Turns out, the Product Features box I’m looking for seems to just be the Icon box, with a section for text after it. Probably styled with a header tag or class so it’s formatted nicely. Maybe that’s something the Creativo guys cooked up. It’s not part of what comes in with WooCommerce.

As far as the sidebar cutting thing goes, I’m still working on it. It does seem to stem from trying to cram in too many columns in VisualComposer, but there’s still formatting issues past the first row. I’ll try to come up with a repeatable and easier to demonstrate example later today.

Alin [tagDiv]
tagDiv Staff

Hi,

1. Envato specifies that each theme can be used for one product (site): http://themeforest.net/licenses/standard
If you want to use it on multiple sites/domains you’d have to buy a license for each project. If you will change your site domain you can use it.

2. Unfortunately theme doesn’t have a block like that, you will need custom modifications for example block 1 is made by module 4 and module 6 but you can change that: http://screencast.com/t/YDovNwpT
Result: http://screencast.com/t/7nEmyuozc

3. Please try this custom css in Theme Panel > Custom Css: http://screencast.com/t/JUWsyyhd

.td-sub-footer-container.td-container {
border-left: 1px solid black;
}

Thanks!

simchris
tagDiv Member

You can change any of the styles however you wish with custom CSS.

Simply look at the page source for the widget on the page, or use the console (F12) in Chrome to highlight and inspect that element to reveal the CSS used.

Then simply put in the CSS styles you want for those elements in the custom CSS panel in the theme panel.

The tag cloud widget is part of the default WordPress widgets and not a theme widget. Some folks simple use a custom plugin for a tag cloud which gives you control over what items are shown, sizes, fonts, colors, etc.

If you have no idea how to write CSS, simplest thing is to look at many of the free plugins:
https://wordpress.org/plugins/search.php?q=tag+cloud&=Search+Plugins

A lot of folks on these forums (TagDiv) seem to be using this one:
https://wordpress.org/plugins/cool-tag-cloud/

  • This reply was modified 11 years by simchris.
Vesa
Participant
#0

We’re using Block 2 to display blog posts on our page.

The idea is to display the blog links in two columns and five rows, always with equally-sized images, titles and descriptions, with a “Load more” button after that.

Please see the screenshot to see what I mean:

http://aijaa.com/ZDB43n

It shows the first four blog post links. After 10 such links (= 5 rows), there should be a “Load more” button.

Alas, we have not been able to accomplish this, no matter which settings we have used.

For example, if the “Limit post number” option is greater than 2, the blog links below the first 2 links (ie, below the first row) have smaller images and just titles, no description.

We have set “Infinite load show ‘Load more’ after x pages” to 10, but there is no “Load more button”. All the blog posts are shown.

Thanks in advance for suggestions.

Jonas-Holm
Participant
#0

Hey guys.
I’m using thumbnail images on my posts, because i want them to show on my homepage. But I dont want the image to be shown on the actual post-page. How can i change that? Here’s an example: http://snowboard-mag.dk/the-crap-show-2015-3-laax/
The thumbnail image is in the top of the post.

CHeers

chayuline
Participant
#0

Hi, tagdiv.

I am not good at English. sorry. but I can understand your English. Do not worry.

Q1) I am using newsmag theme, my site(joyailbo.com). But I will change my site domain(example web adress: http://example dot co.kr). Am I repurchase a newsmag theme license?

Q2) About block thumbnail. Newsmag block thumbnails and posts title system is https://www.dropbox.com/s/vh3xzfpad6t6btf/thumbs1.png?dl=0

but I want block thumbnails and posts title system. Like this.

https://www.dropbox.com/s/j6sqe339pgfmpn6/htumbs2.png?dl=0

is it possible?

Q3) My site joyailbo.com left bottom border color is different.

https://www.dropbox.com/s/f1zixxmppmzzq85/border.png?dl=0

I can not fix it. how to fix it?

Once again, I do not speak English well. so sorry.

I look forward to your reply. Thank You.

simchris
tagDiv Member

CORRECTION TO BEST WAY TO SET CUSTOM TIME:

note I ran into issue with the previously suggested method for setting custom time stamp to print under headlines on posts, as it also changes the date used for things like archives by date pages and made the “day archive” post super funky — which came up when I put a calendar for month on one of my home pages.

So, better solution is:

I opened up single_template_2.php
and on/about line 30

added the time as so:

<?php echo $td_mod_single->get_date(false);?> <?php echo get_the_time(); ?>

Works perfectly.

Output on the post as (example):

By Terry Windall - May 5, 2015 12:47:18 -0400 EDT

for help on Linux ‘codes’ for setting date/time elements on WordPress admin panel and/or adding custom formats to above php code, see:
https://codex.wordpress.org/Formatting_Date_and_Time

Alin [tagDiv]
tagDiv Staff

Hi,

You can change also top menu font and color – http://screencast.com/t/FwPGVWFn
Also the top social icons color by default is black – http://screencast.com/t/f3cB1gLv7 but depends on which header style you use for example the default color in header style 3: http://screencast.com/t/gcLhB8v8x

Thanks!

neakriti
Participant
#0

Is it possible to arrange different controls based on if the page is displayed in tablet, phone, desktop?

For example, I want to avoid using BigSlide on phones because it doesn’t look very good, and instead show some other control there.

So can we make different variations of the page based on the type of device visiting the page?

Thank you

Alin [tagDiv]
tagDiv Staff

Hi,

Please check this without any plugins active, leave only Visual composer active see if it works. Also you can check this with a WordPress default theme and let us know.
If this works with a default theme please provide an example of embed so we can take a look.

Thanks!

dwarkapuria
Participant
#0

Hello

i have tried everything , my site is on dedicated server with 32gb ram , but server is responding in 2.2 seconds , is their ant htaccess technique to load page faster or is their any problem with theme .
thanks

https://developers.google.com/speed/pagespeed/insights/?url=http%3A%2F%2Fpagalparrot.com%2F&tab=mobile

Viewing 25 results - 36,276 through 36,300 (of 38,683 total)