gumatera
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress Gallery not linking to fileWow, Thank You very much!!!
Forum: Fixing WordPress
In reply to: WordPress Gallery not linking to file@abretado1985 I really appreciate your help.
I am glad I found the solution below:I created a single-my-category-name.php, and put the following code:
<?php $thumb = wp_get_attachment_image_src( get_post_thumbnail_id(get_the_ID()), 'medium' ); $imagem = $thumb['0']; $atributos = parse_atts(get_the_content()); ?> ((Some page content here, before the gallery....)) <?php if ($attriif ($attributes) { $ids = explode(',',$attributes['ids']); if ($ids) { echo '<ul class="gallery-class">'; foreach ($ids as $id_attachment) { $img_thumb = wp_get_attachment_image_src( $id_attachment ); $img_attachment = wp_get_attachment_image_src( $id_attachment, 'large' ); ?> <li class="gallery-li"> <a href="<?= $img_attachment[0]; ?>" rel="prettyPhoto[<?= get_the_ID(); ?>]"> <img src="<?= $img_thumb[0]; ?>" class="gallery-img"> </a> </li> <?php } echo '</ul>'; } } ?>
Note: I used
rel=”prettyPhoto[<?= get_the_ID(); ?>]”
to open the images in light box of Pretty Photo plugin.
The code above inserts the ID of each gallery picture between the brackets.
If you don’t use this plugin, take this part off your code.Forum: Fixing WordPress
In reply to: WordPress Gallery not linking to fileThanks @abretado1985, but when I updated functions.php with your code, all galleries were turned into lists of SRCs of media files, as you can see on https://sh-pro42.teste.website/~hgma4011/devsindifisco.org/eventos-passados/entrega-carteiras-funcionais-2020
I need to keep the galleries structure on frontend (list of thumbnails) and force thumbnails link to the sources of media files.Maybe we could change your code to something like:
<ul> <!–Before the loop of items in gallery–>
<Start loop>
<li><a href=”LINK-TO-FILE-[ID-OR-ARRAY]”><img src=”GALLERY-THUMBNAIL-[ID-OR-ARRAY]”></a></li>
<Finish loop>
</ul>
I Just dont know the syntax, but I think It would work.
Can you help me with this?Algumas observa??es sobre o site:
1 – Usamos o plugin WOOCS – WooCommerce Currency Switcher, pois nossos produtos têm valores em Dólar. Porém, acrescentamos na functions do tema child uma fun??o para que no checkout os valores sejam considerados na moeda REAL.
add_filter(‘wp_head’,function(){
global $WOOCS;
if(is_checkout()){
$WOOCS->set_currency(‘BRL’);
}else{
$WOOCS->set_currency(‘USD’);
}
});Com a fun??o acima, o checkout transparente do Pagseguro aparece na página de checkout, porém n?o carrega as parcelas do cart?o de crédito. No código fonte é possível ver que o select fica disabled e apenas com uma op??o com value=0.
2 – Porém, fiz um outro teste. No plugin WOOCS – WooCommerce Currency Switcher eu configurei a moeda do site como REAL, mesmo sendo o pre?o do produto em Dólar. Assim, o plugin pega a cota??o do dia e calcula o valor do produto em real, exibindo o valor em Real. Nesse teste eu removi a fun??o da functions, já que a moeda apresentada era em Real. Nesse teste, o checkout transparente do Pagseguro apareceu na página de checkout COM as parcelas do cart?o de crédito carregadas corretamente – funcionou como deveria e permite a finaliza??o correta da compra.
PORéM, o cliente precisa que o valor do produto seja apresentado em dólar na página de produto e apenas na página de checkout os itens sejam apresentados em REAL. No cenário 1 descrito acima, tudo isso acontecia, com exce??o da exibi??o das parcelas no checkout transparente.
- This reply was modified 4 years, 7 months ago by gumatera.
Segue o log: https://pastebin.com/jN59ynYg
Estou com um problema parecido. Na verdade, acho até que o problema citado pelo @renemuller tem rela??o com o outro problema:
1 – O checkout transparente n?o está permitindo escolher quantidade de parcelas de pagamento.
2 – meu usuário é direcionado para o pagamento no pagseguro e acredito que seja porque as parcelas n?o puderam ser selecionadas.
Também estou com esse problema.
Inclusive, no checkout transparente meu usuário é direcionado para o pagamento no pagseguro e acredito que seja porque as parcelas n?o puderam ser selecionadas.
The mistery is getting bigger….
If you get to the page in Firefox or Internet Explorer, images are shown correctly…
Any clue?
Forum: Plugins
In reply to: [Contact Form 7] Align all fields to the same widthIt seems ok to me…